I'm creating a Laravel Package that will migrate / add a column to an already existing App Migration that was migrated prior to package being installed.
Is there any best methods for setting something like this up? And if so, how do you manage reset/refresh migrations from App and Package.
OR
Is it better to keep them both separate in that the Package Migration overrides all migrations that the App Migration would have done.
Thanks.