当我跑的时候
php artisan voyager:install --with-dummy
我得到这个错误:
Base table or view already exists
C:\project\Doctrine\DBAL\Driver\PDOException::("SQLSTATE[42S01]: Base table or view already exists: 1050 La table 'users' existe déjà")
我猜“users”表已经被laravel保留了!
我怎样才能解决这个问题?
1条答案
按热度按时间bgibtngc1#
这是因为您的数据库中有一个同名的表,voyager不会替您替换。
使用命令
php工匠migrate:reset
这个命令将为您回滚所有的laravel数据库迁移,然后再次运行
php工匠voyager:install --with-dummy
而且味道很好。