I’m working on a plugin (my first attempt at doing so).
The plugin requires extending the database with a new migration. I was able to run this initial migration using the bin/rake db:migrate
command.
I noticed some problems with the migration afterwards, and am trying to rollback the database, then edit and re-run the migration.
However, when I run bin/rake db:rollback
, I’m getting the following error:
rake aborted!
ActiveRecord::UnknownMigrationVersionError:
No migration with version number 20210820205029.
The version number in the error message does correspond with the plugin migration I’m working on.
Any ideas?