Flask Migrate / Alembic尝试在Oracle数据库中创建现有列

时间:2019-07-11 21:11:14

标签: python-3.x oracle alembic flask-migrate

我使用使用SQLAlchemy的现有Oracle数据库设置了Alembic。

每次我运行python manage.py db migration Alembice时,都会生成以下内容:

    op.drop_constraint('alert_FK', 'alert', type_='foreignkey')
    op.create_foreign_key('alert_FK', 'alert', 'program_module', ['module_id'], ['module_id'], source_schema='myschema', referent_schema='myschema')
    op.drop_table_comment(
        'alerts',
        existing_comment='Alerts and such',
        schema=None
    )

我尝试执行升级,但是Alembic立即产生了相同的迁移。

0 个答案:

没有答案