Rollback one specific migration in Laravel

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

    If you want to rollback last migration.

    php artisan migrate:rollback
    

    If you want to rollback specific migration then go to migration table and set highest value of that record in batch. Then.

    php artisan migrate:rollback
    

    Currently i'm working on laravel 5.8 if not working any other version of laravel please inform to me.

提交回复
热议问题