Commit f6357b77 authored by Rémy Coutable's avatar Rémy Coutable

Allow to use the latest migration in migration specs

This is useful for migration tests that relies on factories and that are
very old and/or tedious to modify to not use factories.
Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent 5912d9b7
...@@ -45,7 +45,13 @@ module MigrationsHelpers ...@@ -45,7 +45,13 @@ module MigrationsHelpers
end end
def migration_schema_version def migration_schema_version
self.class.metadata[:schema] || previous_migration.version metadata_schema = self.class.metadata[:schema]
if metadata_schema == :latest
migrations.last.version
else
metadata_schema || previous_migration.version
end
end end
def schema_migrate_down! def schema_migrate_down!
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment