FixYou
0
Q:

laravel migration rollback

php artisan make:migration create_users_table
2
php artisan migrate:rollback
0
php artisan migrate:rollback --step=1
2
php artisan migrate
0
php artisan migrate:status
1
php artisan make:migration CreateUsersTable
1
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
0
$ php artisan migrate:fresh

Dropped all tables successfully.
Migration table created successfully.
Migrating: 2014_10_12_000000_create_users_table
Migrated:  2014_10_12_000000_create_users_table
Migrating: 2014_10_12_100000_create_password_resets_table
Migrated:  2014_10_12_100000_create_password_resets_table
-1

New to Communities?

Join the community