lightWay
lightWay

Reputation: 31

I just want to run a Laravel's Migration

I have a lot of Migrations but I just want to run one. I tried it many times, but every time all the Migrations were run.

Upvotes: 0

Views: 93

Answers (2)

Saquib Lari
Saquib Lari

Reputation: 190

put migrations in more folders and run

php artisan migrate --path=/app/database/migrations/new_migrations

Upvotes: 0

Nileshsinh Rathod
Nileshsinh Rathod

Reputation: 968

Try this

php artisan migrate --path=/database/migrations/selected/

Upvotes: 4

Related Questions