1215 Cannot add foreign key constraint (SQL: alter table `users` add constraint laravel 7 code example
Example 1: General error: 1215 Cannot add foreign key constraint laravel
Laravel 5.8 Added bigIncrements As Defaults
So there is mismatch in foreign key field types. You see bigIncrements(id) in
User table and unsigned Integer(user_id) in questions table.
How to fix:
1. Either change original migration from bigIncrements() to just
increments()
2. Or in your foreign key column do unsignedBigInteger() instead of
unsignedInteger().
Example 2: cannot add foreign key constraint laravel
Add it in two steps, and its good to make it unsigned too:
public function up()
{
Schema::create('priorities', function($table) {
$table->increments('id', true);
$table->integer('user_id')->unsigned();
$table->foreign('user_id')->references('id')->on('users');
$table->string('priority_name');
$table->smallInteger('rank');
$table->text('class');
$table->timestamps('timecreated');
});
}
if still same error try removing unsigned() from the above code