シーダーでダミーデータを作成したい
シーダーでダミーデータを作成しようとした際に、外部キー制約のエラーが発生しました。
商品のカテゴリの部分で外部キーエラーが発生しているのですが、エラーの理由が理解し切れていません。
ダミー商品のシーダーを作成する前はエラーは起きていませんでした。
どこにミスがあるのか教えていただきたいです。
大カテゴリと小カテゴリが1対多、小カテゴリと商品が1対多の関係です。
発生している問題・エラーメッセージ
SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (`melpit2`.`items`, CONSTRAINT `items_secondary_category_id_foreign` FOREIGN KEY (`secondary_category_id`) REFERENCES `secondary_categories` (`id`))
該当のソースコード
seeder
1public function run() 2{ 3 for ($i = 1; $i <= 10; $i++) { 4 Item::create([ 5 'id' => $i, 6 'seller_id' => 1, 7 'secondary_category_id' => 1, 8 'item_condition_id' => 1, 9 'name' => 'ダミーデータ' .$i, 10 'image_file_name' => '/images/item-image-default.png', 11 'description' => 'これはダミーデータ' .$i .'です', 12 'price' => 1000, 13 'state' => 'selling', 14 ]); 15 } 16}
Schema::create('items', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('seller_id'); $table->unsignedBigInteger('buyer_id')->nullable(); $table->unsignedBigInteger('secondary_category_id'); $table->unsignedBigInteger('item_condition_id'); $table->string('name'); $table->string('image_file_name'); $table->text('description'); $table->unsignedInteger('price'); $table->string('state'); $table->timestamp('bought_at')->nullable(); $table->timestamps(); $table->foreign('seller_id') ->references('id') ->on('users'); $table->foreign('buyer_id') ->references('id') ->on('users'); $table->foreign('secondary_category_id') ->references('id') ->on('secondary_categories'); $table->foreign('item_condition_id') ->references('id') ->on('item_conditions'); });
Schema::create('secondary_categories', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('primary_category_id'); $table->string('name'); $table->integer('sort_no'); $table->timestamps(); $table->foreign('primary_category_id') ->references('id') ->on('primary_categories'); });
Schema::create('primary_categories', function (Blueprint $table) { $table->id(); $table->string('name'); $table->integer('sort_no'); $table->timestamps(); });
補足情報(FW/ツールのバージョンなど)
laravel7.25
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/27 08:08