2017-05-26 04:36:01 -04:00
|
|
|
module MigrationsHelpers
|
|
|
|
def table(name)
|
2018-03-29 06:12:00 -04:00
|
|
|
Class.new(ActiveRecord::Base) do
|
|
|
|
self.table_name = name
|
|
|
|
self.inheritance_column = :_type_disabled
|
|
|
|
end
|
2017-05-26 04:36:01 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def migrations_paths
|
|
|
|
ActiveRecord::Migrator.migrations_paths
|
|
|
|
end
|
|
|
|
|
2017-05-26 08:46:45 -04:00
|
|
|
def table_exists?(name)
|
|
|
|
ActiveRecord::Base.connection.table_exists?(name)
|
|
|
|
end
|
|
|
|
|
2017-06-05 05:07:10 -04:00
|
|
|
def migrations
|
|
|
|
ActiveRecord::Migrator.migrations(migrations_paths)
|
|
|
|
end
|
|
|
|
|
2018-02-06 05:13:10 -05:00
|
|
|
def clear_schema_cache!
|
2017-09-11 14:49:32 -04:00
|
|
|
ActiveRecord::Base.connection_pool.connections.each do |conn|
|
|
|
|
conn.schema_cache.clear!
|
|
|
|
end
|
2018-02-06 05:13:10 -05:00
|
|
|
end
|
2017-08-28 06:49:43 -04:00
|
|
|
|
2018-02-06 05:13:10 -05:00
|
|
|
def reset_column_in_all_models
|
|
|
|
clear_schema_cache!
|
2017-08-07 05:11:11 -04:00
|
|
|
|
2018-02-06 05:13:10 -05:00
|
|
|
# Reset column information for the most offending classes **after** we
|
2018-02-08 11:31:36 -05:00
|
|
|
# migrated the schema up, otherwise, column information could be
|
|
|
|
# outdated. We have a separate method for this so we can override it in EE.
|
|
|
|
ActiveRecord::Base.descendants.each(&method(:reset_column_information))
|
2018-02-06 05:13:10 -05:00
|
|
|
|
|
|
|
# Without that, we get errors because of missing attributes, e.g.
|
|
|
|
# super: no superclass method `elasticsearch_indexing' for #<ApplicationSetting:0x00007f85628508d8>
|
|
|
|
ApplicationSetting.define_attribute_methods
|
2017-08-07 05:11:11 -04:00
|
|
|
end
|
|
|
|
|
2018-02-08 11:31:36 -05:00
|
|
|
def reset_column_information(klass)
|
|
|
|
klass.reset_column_information
|
|
|
|
end
|
|
|
|
|
2017-06-05 05:07:10 -04:00
|
|
|
def previous_migration
|
|
|
|
migrations.each_cons(2) do |previous, migration|
|
|
|
|
break previous if migration.name == described_class.name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-16 07:05:18 -04:00
|
|
|
def migration_schema_version
|
2018-02-12 09:31:12 -05:00
|
|
|
metadata_schema = self.class.metadata[:schema]
|
|
|
|
|
|
|
|
if metadata_schema == :latest
|
|
|
|
migrations.last.version
|
|
|
|
else
|
|
|
|
metadata_schema || previous_migration.version
|
|
|
|
end
|
2017-08-16 07:05:18 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def schema_migrate_down!
|
2017-08-17 06:34:31 -04:00
|
|
|
disable_migrations_output do
|
|
|
|
ActiveRecord::Migrator.migrate(migrations_paths,
|
|
|
|
migration_schema_version)
|
|
|
|
end
|
|
|
|
|
2018-02-06 05:13:10 -05:00
|
|
|
reset_column_in_all_models
|
2017-08-16 07:05:18 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def schema_migrate_up!
|
2018-02-12 09:33:39 -05:00
|
|
|
reset_column_in_all_models
|
|
|
|
|
2017-08-17 06:34:31 -04:00
|
|
|
disable_migrations_output do
|
|
|
|
ActiveRecord::Migrator.migrate(migrations_paths)
|
|
|
|
end
|
|
|
|
|
2018-02-06 05:13:10 -05:00
|
|
|
reset_column_in_all_models
|
2017-08-16 07:05:18 -04:00
|
|
|
end
|
|
|
|
|
2017-08-17 06:34:31 -04:00
|
|
|
def disable_migrations_output
|
|
|
|
ActiveRecord::Migration.verbose = false
|
|
|
|
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
ActiveRecord::Migration.verbose = true
|
|
|
|
end
|
|
|
|
|
2017-05-26 04:36:01 -04:00
|
|
|
def migrate!
|
|
|
|
ActiveRecord::Migrator.up(migrations_paths) do |migration|
|
|
|
|
migration.name == described_class.name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|