Answers for "laravel rollback last migration"

8

laravel rollback last migration

php artisan migrate:rollback --step=1
Posted by: Guest on May-13-2020
5

migration rollback

php artisan migrate:rollback
Posted by: Guest on May-04-2020
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 May-04-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 May-04-2020
2

laravel create migration

php artisan make:migration add_votes_to_users_table --table=users

php artisan make:migration create_users_table --create=users
Posted by: Guest on June-27-2020
0

Laravel Rolling Back Migrations

php artisan migrate:rollback --step=5
Posted by: Guest on June-27-2020

Code answers related to "laravel rollback last migration"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language