Rollback one specific migration in Laravel

前端 未结 19 1674
梦毁少年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 04:45

    better to used refresh migrate

    You may rollback & re-migrate a limited number of migrations by providing the step option to the refresh command. For example, the following command will rollback & re-migrate the last two migrations:

    php artisan migrate:refresh --step=2
    

    otherwise used rollback migrate

    You may rollback a limited number of migrations by providing the step option to the rollback command. For example, the following command will rollback the last three migrations:

    php artisan migrate:rollback --step=3
    

    for more detail about migration see

提交回复
热议问题