🎄teratailクリスマスプレゼントキャンペーン2024🎄』開催中!

\teratail特別グッズやAmazonギフトカード最大2,000円分が当たる!/

詳細はこちら
Laravel

LaravelとはTaylor Otwellによって開発された、オープンソースなPHPフレームワークです。Laravelはシンプルで表現的なシンタックスを持ち合わせており、ウェブアプリケーション開発の手助けをしてくれます。

Q&A

解決済

1回答

767閲覧

Laravel のphp artisan migrateでadd foreign keyエラー

mikeko0901

総合スコア227

Laravel

LaravelとはTaylor Otwellによって開発された、オープンソースなPHPフレームワークです。Laravelはシンプルで表現的なシンタックスを持ち合わせており、ウェブアプリケーション開発の手助けをしてくれます。

0グッド

0クリップ

投稿2021/03/13 14:44

初歩的なところですみません。。

以下のテーブルを作成したいのですが、php artisan migrateでエラーが出ます。

【テーブル】
categories : カテゴリ用のテーブル
products : 商品テーブル

【現象】
①categoriesテーブルを作成しました。
・categoriesのマイグレーションファイル

<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateCategoriesTable extends Migration { public function up() { Schema::create('categories', function (Blueprint $table) { $table->id(); $table->string('name', 30); $table->string('description', 150); $table->string('keyword', 100); $table->timestamps(); }); } public function down() { Schema::dropIfExists('categories'); } }

⇒問題なく作成できました。

②productsテーブルを作成しようと、マイグレーションファイルを作成
productsのマイグレーションファイル

<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateProductsTable extends Migration { public function up() { Schema::create('products', function (Blueprint $table) { $table->id(); $table->string('name', 50); $table->integer('price'); $table->string('image', 60)->nullable(); $table->string('image2', 60)->nullable(); $table->text('description')->nullable(); $table->boolean('yuko_flg'); $table->string('sales_channel', 20); $table->integer('category_id'); $table->foreign('category_id')->references('id')->on('categories'); $table->timestamps(); }); } public function down() { Schema::dropIfExists('products'); } }

③productsテーブルを作成しようと、php artisan migrateを実行
⇒以下のエラー
イメージ説明

foreign keyを追加できないとのことですが、
categoryの複数系がcategoriesなので、categoriesテーブルを作成しましたが、
categorysテーブルにした方がよかったのでしょうか。。

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答1

0

ベストアンサー

diff

1<?php 2 3use Illuminate\Database\Migrations\Migration; 4use Illuminate\Database\Schema\Blueprint; 5use Illuminate\Support\Facades\Schema; 6 7class CreateProductsTable extends Migration 8{ 9 public function up() 10 { 11 Schema::create('products', function (Blueprint $table) { 12 $table->id(); 13 $table->string('name', 50); 14 $table->integer('price'); 15 $table->string('image', 60)->nullable(); 16 $table->string('image2', 60)->nullable(); 17 $table->text('description')->nullable(); 18 $table->boolean('yuko_flg'); 19 $table->string('sales_channel', 20); 20- $table->integer('category_id'); 21+ $table->unsignedBigInteger('category_id'); 22 $table->foreign('category_id')->references('id')->on('categories'); 23 $table->timestamps(); 24 25 }); 26 } 27 28 public function down() 29 { 30 Schema::dropIfExists('products'); 31 } 32}

投稿2021/03/13 14:48

phper.k

総合スコア3923

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

phper.k

2021/03/13 14:51

外部キーの設定では、両テーブルのフィールドの型が一致していなければならない
mikeko0901

2021/03/13 14:58

ありがとうございます!できました。 $table->id(); では型がbigIntegerになるんですね・・・ ありがとうございます。
phper.k

2021/03/13 15:00 編集

> $table->id(); では型がbigIntegerになるんですね・・・ いいえ。unsigned がつきます。
mikeko0901

2021/03/14 01:09

なるほど。。! では、 $table->bigInteger('category_id'); にするとエラーになるんですね!ありがとうございます。
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.36%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問