how to change the migration file laravel code example
Example 1: create laravel migration
php artisan make:migration create_users_table
Example 2: laravel migration integer
$table->bigInteger('votes');
php artisan make:migration create_users_table
$table->bigInteger('votes');