php artisan make:migration steps=1 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();
php artisan migrate:rollback --step=1
$table->string('foo')->nullable(false)->change();