Can I disable auto migrating for a specific package?
I'm building a package that is dependant to another package.. That other package auto migrates its migrations when php artisan migrate runs.. I don't want that to happen as I'm copying its migration and moving it to another directory so What can I do "from my package" to disable the auto migration for that other package?
@Sinnbeck I don't wanna change structure of their table but I wanna move their migrations into my tenants migrations. u get my point? I can hard copy their migrations into my tenant and drop their migrations after migrating but this will fail on the first update