migrate a specific migration laravel8 code example
Example 1: artisan make migration with model
php artisan make:Model Status -m
Example 2: laravel before migration
Schema::table('users', function ($table) {
$table->string('email')->after('id')->nullable();
});