-
Notifications
You must be signed in to change notification settings - Fork 11.4k
auth:reminders migration does not support rollback #1391
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
do |
@robclancy I've solved the issue the next way:
|
See if the rollback works if you do |
I can't say for sure, because I haven't done the clean experiment, but if I remove working auth migration, then create it again and try to do php artisan migrate:reset then it fails (because it would try to load an old file). But after the Thanks, but anyway I think it's expected that the auth:reminders migration should work by default. |
If you create the "password reminders" migration using php artisan auth:reminders, then it's not possible to use php artisan migrate:reset for this migration , because Migrator is not able to find the CreatePasswordRemindersTable class.
Probably it takes the place because those procedures:
Are not initialized when creating the auth:reminders migration.
The text was updated successfully, but these errors were encountered: