firstly I create a migration and in cmd, I run php artisan migrate but it didn't create a new table. it's showing this message. Do you have any answer, Senior Developers! please help me. Thanks a lot
0
votes
1 Answers
1
votes
Laravel Documentation for Migration
If you want to run the migration without saving any data in database you can :
php artisan migrate:fresh
// Refresh the database and run all database seeds...
php artisan migrate:fresh --seed