Answers for "Illuminate\Database\QueryException SQLSTATE[HY000]: General error: 3780 Referencing column"

PHP
0

Illuminate\Database\QueryException SQLSTATE[HY000]: General error: 3780 Referencing column

//ERROR: Illuminate\Database\QueryException SQLSTATE[HY000]: General error: 3780 Referencing column
//Change...
	$table->integer('user_id')->unsigned()->index();
//To...
	$table->bigInteger('user_id')->unsigned()->index();
Posted by: Guest on June-30-2021

Code answers related to "Illuminate\Database\QueryException SQLSTATE[HY000]: General error: 3780 Referencing column"

Browse Popular Code Answers by Language