0
votes

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

1
Can you share us the error message that you are getting? - Jitendra

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