我正在尝试使用 alembic 将“id”主键列添加到已经存在的 MySQL 表中。我尝试了以下...
op.add_column('mytable', sa.Column('id', sa.Integer(), nullable=False))
op.alter_column('mytable', 'id', autoincrement=True, existing_type=sa.Integer(), existing_server_default=False, existing_nullable=False)
但出现以下错误
sqlalchemy.exc.OperationalError: (OperationalError) (1075, 'Incorrect table definition; there can be only one auto column and it must be defined as a key') 'ALTER TABLE mytable CHANGE id id INTEGER NOT NULL AUTO_INCREMENT' ()
看起来alembic生成的sql语句没有PRIMARY KEY
在alter语句的末尾添加。我可能错过了一些设置吗?
提前致谢!