We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when a foreign column create it must have same type
table a id => unsigned and integer
table b parent (foreign key with table a)
parent => integer
*** parent must unsignedInteger
The text was updated successfully, but these errors were encountered:
See https://stackoverflow.com/questions/22615926/migration-cannot-add-foreign-key-constraint-in-laravel
How to achieve the config $table->bigInteger('user_id')->unsigned()->index(); // this is working
$table->bigInteger('user_id')->unsigned()->index(); // this is working
Sorry, something went wrong.
Basically, just add ->unsigned() to the Foreign Key lines
No branches or pull requests
when a foreign column create it must have same type
table a
id => unsigned and integer
table b
parent (foreign key with table a)
parent => integer
*** parent must unsignedInteger
The text was updated successfully, but these errors were encountered: