Alembic删除了外键的索引

时间:2013-12-31 12:37:58

标签: python sqlalchemy alembic

我有一个专栏address_id = db.Column(db.Integer, db.ForeignKey(Address.id, ondelete='CASCADE'), index=True)。使用Alembic自动生成迁移始终会添加drop_index操作。

op.drop_index('address_id', 'companies')

为什么每次生成迁移都会发生这种情况?

1 个答案:

答案 0 :(得分:4)

这是Alembic 0.6.1中的known bug。升级到0.6.2或更高版本,问题就会消失。