laravel 7 migration datatype code example
Example 1: php artisan see last migration
php artisan migrate:status
Example 2: laravel migration integer
$table->bigInteger('votes');
php artisan migrate:status
$table->bigInteger('votes');