illuminate 5cdatabase 5cqueryexception sqlstate 5bhy000 5d 3a general error 3a 3780 referencing column

Solutions on MaxInterview for illuminate 5cdatabase 5cqueryexception sqlstate 5bhy000 5d 3a general error 3a 3780 referencing column by the best coders in the world

showing results for - "illuminate 5cdatabase 5cqueryexception sqlstate 5bhy000 5d 3a general error 3a 3780 referencing column"
Fátima
19 May 2020
1//ERROR: Illuminate\Database\QueryException SQLSTATE[HY000]: General error: 3780 Referencing column
2//Change...
3	$table->integer('user_id')->unsigned()->index();
4//To...
5	$table->bigInteger('user_id')->unsigned()->index();