我使用以下方法为laravel创建了一个迁移类:
php artisan make:migration mymigrationclass
然后我手动删除了它。然后我使用相同的名称再次创建它。
之后我尝试使用以下方法刷新数据库:
php artisan migrate:refresh
但现在我收到了错误:
Cannot declare class mymigrationclass, because the name is already in use
可能是因为我之前手动删除了它。
我现在该怎么办?
答案 0 :(得分:1)
Also, make sure you remove it from your migrations table in db.
答案 1 :(得分:0)
使用命令
composer dump-autoload