xxxxxxxxxx
//Rolling Back Migrations
//To roll back the latest migration operation
php artisan migrate:rollback
//You may roll back a limited number of migrations
php artisan migrate:rollback --step=2
//The migrate:reset command will roll back all of your application's migrations:
php artisan migrate:reset
xxxxxxxxxx
php artisan migrate:refresh --path="database/migrations/Your_Migration_File_Name_table.php"
xxxxxxxxxx
php artisan migrate --path=database/migrations/2022_08_01_120000_create_users_table.php