私は、既存のMySQLテーブルにalembicを使って 'id'プライマリキーカラムを追加しようとしています。私は、次の...alembicの既存の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'()
は、ALTER文の末尾にPRIMARY KEY
を追加しませんでしたアレンビックによって生成されたSQL文のように見え、次のエラーを得ました。私はいくつかの設定を忘れていますか?
ありがとうございます!