1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Laravelトラブルシューティング:外部キーが作成できない

Last updated at Posted at 2018-03-17

Laravelのマイグレーションで外部キーが作成できなかった件についてのメモ。

外部キーが作成できない原因なぞいろいろあるが、Laravelのちょっとした仕様が理由だった件について。

問題

まず、下記で外部キーの作成を試みたところ、

$table->foreign('product_id', 'product_id_foreign')
                ->references('id')->on('products')
                ->onDelete(self::CASCADE)->onUpdate(self::CASCADE);

マイグレーションを実行すると、次のようなエラーになった。

SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint (SQL: alter table `products_product_categories` add constraint `product_id_foreign` foreign key (`product_id`) references `products` (`id`) on delete cascade on update cascade)

原因

結論から書くと、カラムの型が一致していなかったのが原因。

プライマリキーを外部キーに使用することはよくあると思うが、参照されるプライマリキーが unsigned int だったのに対して、外部キーを設定しようとしたカラムが int だった。

Laravelの場合、プライマリキーの設定は一般的に下記のようにすると思うが、incrementsメソッドは暗黙的にunsigned int型のカラムを生成する。

$table->increments('id');

ちゃんとドキュメントに書いてある。

解決策

言うまでもないが、外部キーを設定するカラムを参照先のカラムの型と同じにすればOK。

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?