Safely remove migration In Laravel

前端 未结 9 1972
天涯浪人
天涯浪人 2021-01-29 17:46

In Laravel, there appears to be a command for creating a migration, but not removing.

Create migration command:

php artisan migrate:make create_users_tab         


        
9条回答
  •  后悔当初
    2021-01-29 18:14

    This works for me:

    1. I deleted all tables in my database, mainly the migrations table.
    2. php artisan migrate:refresh

    in laravel 5.5.43

提交回复
热议问题