Answers for "php artisan migation refersh"

1

laravel migration rollback

To rollback one step:

php artisan migrate:rollback

To rollback multiple steps:

php artisan migrate:rollback --step=[x]
  
To drop all tables and reload all migrations:

php artisan migrate:fresh
Posted by: Guest on December-01-2020
0

artisan refresh

Try this command it works for me

php artisan migrate:fresh
However, be careful! This command will drop all data from your DB:
Posted by: Guest on August-01-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language