You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#30095 introduced a backwards incompatible change. The ensureMigrationDoesntAlreadyExist method checks for existing migrations recursively, which is wrong.
If you're creating a migration in database/migrations/, you don't care that the same migration exists in database/migrations/tenant/ because php artisan migrate only executes migrations in the main directory by default.
Steps To Reproduce:
Put the same migration in database/migrations/ and database/migrations/tenant/. php artisan migrate doesn't execute migrations inside the tenant/ subdirectory, but it will complain about the same migration existing in both directories.