Support the ongoing development of Laravel.io →
posted 10 years ago
Eloquent
Last updated 2 years ago.
0

The problem is the primary key on table1 is unsigned and the foreign key on table2 is not. You need them both to be the same. Try changing the table2 definition to this.

Schema::table('table2', function($table) {
   $table->integer('table1_id')->unsigned();
   $table->foreign('table1_id') ->references('id')->on('table1');
});
Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.