laravel migration unsigned small integer code example
Example 1: laravel migration integer
$table->integer('votes');
Example 2: laravel migration table bigint
$this->bigIncrements('id');
This takes care of making it unsigned, auto increment and primary key