Rollback one specific migration in Laravel

前端 未结 19 1650
梦毁少年i
梦毁少年i 2020-12-02 04:14

I want

to rollback only :

Rolled back: 2015_05_15_195423_alter_table_web_directories


I run

php artisan migrate:roll

19条回答
  •  抹茶落季
    2020-12-02 05:03

    As stated in the Laravel manual, you may roll back specific number of migrations using the --step option

    php artisan migrate:rollback --step=5
    

提交回复
热议问题