[sqlalchemy] Re: Choosing pattern for vertical table like mapping.

2014-09-10 Thread Anton
So I am trying to do the following: class SimpleModel(object): __table_args__ = {'extend_existing': True} id = db.Column(db.Integer, primary_key=True) class GroupEntityAttributes(SimpleModel, db.Model): __table_args__ = {'extend_existing': True} __tablename__ = 'group_entity'

[sqlalchemy] Re: Choosing pattern for vertical table like mapping.

2014-09-09 Thread Anton
Trying to use with multiple table mapping. On Tuesday, September 9, 2014 1:03:25 PM UTC-7, Anton wrote: Hi, I need some help choosing the right pattern for the models I have. I have the following tables: Entity (INT id, VARCHAR name) Group (INT id, VARCHAT name)