前提・実現したいこと
マイグレーションファイルを作成したいのですが、エラーが発生しています。
調べたのですが原因がわからず困っております。
laravel6.xです。
発生している問題・エラーメッセージ
Illuminate\Database\QueryException : SQLSTATE[42000]: Syntax error or access violation: 1072 Key column 'month_id' doesn't exist in table (SQL: alter table `months` add constraint `months_month_id_foreign` foreign key (`month_id`) references `months` (`id`)) at /home/ubuntu/environment/d-task/vendor/laravel/framework/src/Illuminate/Database/Connection.php:669 665| // If an exception occurs when attempting to run a query, we'll format the error 666| // message to include the bindings with SQL, which will make this exception a 667| // lot more helpful to the developer instead of just the database's errors. 668| catch (Exception $e) { > 669| throw new QueryException( 670| $query, $this->prepareBindings($bindings), $e 671| ); 672| } 673| Exception trace: 1 PDOException::("SQLSTATE[42000]: Syntax error or access violation: 1072 Key column 'month_id' doesn't exist in table") /home/ubuntu/environment/d-task/vendor/laravel/framework/src/Illuminate/Database/Connection.php:463 2 PDOStatement::execute() /home/ubuntu/environment/d-task/vendor/laravel/framework/src/Illuminate/Database/Connection.php:463 Please use the argument -v to see more details.
該当のソースコード
PHP
1<?php 2 3use Illuminate\Database\Migrations\Migration; 4use Illuminate\Database\Schema\Blueprint; 5use Illuminate\Support\Facades\Schema; 6 7class CreateMonthsTable extends Migration 8{ 9 /** 10 * Run the migrations. 11 * 12 * @return void 13 */ 14 public function up() 15 { 16 Schema::create('months', function (Blueprint $table) { 17 $table->bigIncrements('id'); 18 $table->unsignedBigInteger('user_id'); 19 $table->string('days'); 20 $table->timestamps(); 21 22 // 外部キー制約 23 $table->foreign('user_id')->references('id')->on('users'); 24 $table->foreign('month_id')->references('id')->on('months'); 25 26 // user_idとfollow_idの組み合わせの重複を許さない 27 $table->unique(['user_id', 'month_id']); 28 }); 29 } 30 31 /** 32 * Reverse the migrations. 33 * 34 * @return void 35 */ 36 public function down() 37 { 38 Schema::dropIfExists('months'); 39 } 40} 41
sql
1+------------------+ 2| Tables_in_dtasks | 3+------------------+ 4| failed_jobs | 5| migrations | 6| months | 7| password_resets | 8| users | 9+------------------+
試したこと
マイグレーションファイルを削除したりロールバックしたり、リフレッシュしたりしたのですが
コード自体が間違っているのでしょうか?
初心者質問で申し訳ございません。
宜しくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/16 00:57