We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrated issue, originally created by Quentin Leffray ()
Running Alembic autogenerate do not detect inherited columns from a parent table, and flag them as "to-be-dropped".
The model is defined as follow:
#!python class Animal(Base): __tablename__ = 'animal' id = Column(Integer, primary_key=True) name = Column(String) type_ = Column(String) __mapper_args__ = { 'polymorphic_identity': 'animal', 'polymorphic_on': type_, 'with_polymorphic': '*', } class Unicorn(Animal): __tablename__ = 'unicorn' __table_args__ = {'postgresql_inherits': 'animal'} id = Column(Integer, ForeignKey('animal.id'), primary_key=True) color = Column(String) __mapper_args__ = { 'polymorphic_identity': 'unicorn', }
And the migration produced by alembic --autogenerate:
alembic --autogenerate
#!python def upgrade(): ### commands auto generated by Alembic - please adjust! ### op.drop_column('unicorn', 'name') op.drop_column('unicorn', 'type_')
The text was updated successfully, but these errors were encountered:
Changes by Quentin Leffray ():
Sorry, something went wrong.
Michael Bayer (zzzeek) wrote:
nothing is wrong, this is something that isn't supported out of the box. At the very least would rely upon https://bitbucket.org/zzzeek/sqlalchemy/issues/1803/reflect-postgresql-inherits-relationships. For autogenerate you need to write an include_object routine to ignore these columns appropriately. I'd also accept a recipe section that includes this workaround for now.
Changes by Michael Bayer (zzzeek):
No branches or pull requests
Migrated issue, originally created by Quentin Leffray ()
Running Alembic autogenerate do not detect inherited columns from a parent table, and flag them as "to-be-dropped".
The model is defined as follow:
And the migration produced by
alembic --autogenerate
:The text was updated successfully, but these errors were encountered: