Reputation: 31
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
Reputation: 190
put migrations in more folders and run
php artisan migrate --path=/app/database/migrations/new_migrations
Upvotes: 0
Reputation: 968
Try this
php artisan migrate --path=/database/migrations/selected/
Upvotes: 4