Mysql
 sql >> Datenbank >  >> RDS >> Mysql

mysql alter int Spalte zu bigint mit Fremdschlüsseln

Auch mit SET foreign_key_checks = 0 , können Sie den Typ der Constraint-Spalte nicht ändern. Aus dem MySQL-Dokument:http://dev.mysql.com/doc/refman/5.5/en/innodb-foreign-key-constraints.html

However, even if foreign_key_checks = 0, InnoDB does not permit the creation of a foreign key constraint where a column references a nonmatching column type.

Also stimme ich dem Kommentar von Devart zu. Legen Sie es einfach ab und erstellen Sie es erneut.