Laravel 4 migrate:rollback with --path on artisan CLI
问题 I'm having some roadblock on Laravel 4. Since I can't make artisan:migrate generate migrations from inner folders of app/database/migrations (ex: app/database/migrations/app1) I have this on my custom command app:migrate /* default path */ $this->call('migrate'); /* custom path */ $this->call('migrate', array('--path' => 'app/database/migrations/app1')); but i also want an app:refresh command which will rollback all the migrations from the custom path then from the default path.. then re