###タイトルのエラーについて
docker上でテーブルを作成しようとphp artisan migrateをかけたら初めてこのエラーに遭遇
解消法はいたって簡単
最初に書いていたmigrationファイル
migration.php
Schema::create('questions', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id');
$table->increments('tag_category_id');
$table->string('title');
$table->text('content');
$table->timestamps();
$table->softDeletes();
});
これだとタイトルのエラーが出た。
立てた仮説は主キーがふたつできてしまっているからエラーになっているのではないかと予想。
なので、こう変更して再びマイグレーション。
migration.php
Schema::create('questions', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id');
$table->integer('tag_category_id'); //変更
$table->string('title');
$table->text('content');
$table->timestamps();
$table->softDeletes();
});
###結果
無事マイグレーションが成功