I'm using the database migration plugin in my app but im having issues when using other plugins that have DB schema dependencies.
I want to use the migrations plugin to setup / refactor my DB in preparation for using a freshly installed plugin (e.g. taxonomy plugin). The problem is that the migrations plugin loads after other plugins so my application is failing before I can even run the migration (schema dependencies not applied). It would seem reasonable to me that DB migrations should run before other plugins (in 99% of cases). Correct?
Is there a way (without customising the migration plugin with "def loadBefore") to force the migrations plugin to load first?
Thanks