Horje
laravel rollback last migration Code Example
laravel rollback last migration
php artisan migrate:rollback --step=1
migration rollback
php artisan migrate:rollback
Source: laravel.com
Laravel rollback all migrations
php artisan migrate:reset
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
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:
laravel create migration
php artisan make:migration add_votes_to_users_table --table=users

php artisan make:migration create_users_table --create=users
Source: laravel.com




Shell

Related
git reset stash conflict Code Example git reset stash conflict Code Example
php artisan rollback step 1 Code Example php artisan rollback step 1 Code Example
laravel migrate rollback specific file Code Example laravel migrate rollback specific file Code Example
The requested apache plugin does not appear to be installed Code Example The requested apache plugin does not appear to be installed Code Example
Please move or remove them before you merge. Code Example Please move or remove them before you merge. Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
14