how to change column type integer to add unsignedBigInteger foreign key in laravel code example
Example 1: laravel migration integer
$table->bigInteger('votes');
Example 2: php artisan see last migration
php artisan migrate:status
$table->bigInteger('votes');
php artisan migrate:status