Rollback one specific migration in Laravel

前端 未结 19 1655
梦毁少年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:02

    Migrate tables one by one.

    Change the batch number of the migration you want to rollback to the highest.

    Run migrate:rollback.

    May not be the most comfortable way to deal with larger projects.

提交回复
热议问题