我在Laravel中制作了一些迁移文件。当我输入php artisan migrate
时
在我的终端,一切都很顺利。如果我要回滚所有迁移,请输入php artian migrate:refresh
,然后收到错误消息:
[ErrorException]
include(/Applications/XAMPP/xamppfiles/htdocs/api-dashboardv2/app/database/
migrations/2014_10_03_113254_create_groups_user_table.php): failed to open
stream: No such file or directory.
如果文件是2014_10_03_113254_create_groups_user_table.php
,但我将其更改为2014_10_03_113254_create_group_user_table.php
(没有按组分列的's')的名称。
在我更改文件名后,我手动删除了我的数据库,并使用迁移文件再次创建了表。
我不明白为什么我仍然会收到此错误。
答案 0 :(得分:1)
你试过composer dump
吗?自从您更改了迁移文件后,可能需要重新加载文件。