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
Currently, migrations are being applied in reverse order. They should be applied from the lowest version to the higher one, so each migration is applied on top of all the previous ones (probably related with this bug: #4866)
ifold_version<Version("0.25"):
...
ifold_version<Version("1.0"):
_migrate_lock_files(self.cache, self.out)
ifold_version<Version("1.12.0"):
migrate_plugins_to_hooks(self.cache)
ifold_version<Version("1.13.0"):
# MIGRATE LOCAL CACHE TO GENERATE MISSING METADATA.json_migrate_create_metadata(self.cache, self.out)
ifold_version<Version("1.14.0"):
migrate_config_install(self.cache)
The text was updated successfully, but these errors were encountered:
Currently, migrations are being applied in reverse order. They should be applied from the lowest version to the higher one, so each migration is applied on top of all the previous ones (probably related with this bug: #4866)
The text was updated successfully, but these errors were encountered: