Is possible to run a migration for only one entity of a module?
-
I have an app that is currently deployed and a module needs to have a new entity. Is there any way to run only the entity specific migration, without running the module migration as a whole?
-
Autoanswer:
I made a test and observed that if you just run
php artisan module:migrate YourModuleName
it just migrates all the new tables, without touching anything else.Cool!