Laravel migration error Blueprint::bigint does not exist

If in Laravel migration you have this error:

Method Illuminate\Database\Schema\Blueprint::bigint does not exist.

Replace this line of code:

$table->bigint('column_name')->nullable();

With this:

 $table->bigInteger('column_name')->nullable();

Comments

No comments yet, you can leave yours: