Answers for "biginteger laravel migration"

PHP
3

laravel migration integer

$table->bigInteger('votes');
Posted by: Guest on May-22-2020
-1

laravel migration table bigint

$this->bigIncrements('id');
This takes care of making it unsigned, auto increment and primary key
Posted by: Guest on February-17-2021

Browse Popular Code Answers by Language