creating table in old migration in laravel code example
Example 1: create migration table in php
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');