种子数据库后 laravel 种子回滚

2022-08-31 00:19:53

我已使用 .有没有办法回滚我播种到数据库的内容?php artisan db::seed

我似乎找不到任何像.php artisan db::seed rollback


答案 1

使用撤消播种机对 Laravel。

安装 UndoSeeder 时,可以使用以下工匠命令:

db:seed-undo    Undo seeds in the seeds directory.
db:seed-refresh Undo seeds run seeds again.

更多 撤消播种机


答案 2

您还可以使用 migrate:refresh 命令为数据库设定种子,该命令还将回滚并重新运行所有迁移。以下命令对于完全重新构建数据库非常有用:

php artisan migrate:refresh --seed

跑步播种机


推荐