migration boolean laravel code example
Example 1: laravel rollback last migration
php artisan migrate:rollback --step=1
Example 2: migrations required field laravel
$table->string('foo')->nullable(false)->change();
Example 3: laravel migration integer
$table->bigInteger('votes');
Example 4: php artisan see last migration
php artisan migrate:status