创建php artisan迁移,但不在数据库中创建新表

时间:2019-01-22 15:05:38

标签: laravel

首先,我创建一个迁移,然后在cmd中运行php artisan migration,但它没有创建新表。它显示此消息。您有任何答案吗,高级开发人员!请帮我。非常感谢

1 个答案:

答案 0 :(得分:1)

Laravel Documentation for Migration

如果要运行迁移而不在数据库中保存任何数据,则可以:

php artisan migrate:fresh

// Refresh the database and run all database seeds...
php artisan migrate:fresh --seed