laravel smallinteger code example
Example 1: tinyinteger laravel +size
$table->boolean('fieldname'); will give you TINYINT(1) instaed of using tinyInteger
Example 2: laravel migration table bigint
$this->bigIncrements('id');
This takes care of making it unsigned, auto increment and primary key