I think I've done it. I believe "user_id" needed to be an index key so I changed:
$table->integer('user_id');
with
$table->integer('user_id')->unsigned()->index();
i faced this error too. normally, i add foreign keys as a separate migration. // Schema::table('users', function(Blueprint $table){$table->integer('user_id')->unsigned()->index()->nullable();});
and ...add nullable() to the key as well.
// $table->integer('user_id')->unsigned()->index()->nullable();
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community