Answers for "artisan migrate fresh"

PHP
25

php artisan make migration

php artisan make:migration create_users_table
Posted by: Guest on January-14-2021
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
0

laravel migrate fresh

php artisan migrate:refresh

// Refresh the database and run all database seeds...
php artisan migrate:refresh --seed
Posted by: Guest on May-04-2021

Browse Popular Code Answers by Language