BigW Consortium Gitlab

migrations_helpers.rb 1.62 KB
Newer Older
1 2 3 4 5 6 7 8 9
module MigrationsHelpers
  def table(name)
    Class.new(ActiveRecord::Base) { self.table_name = name }
  end

  def migrations_paths
    ActiveRecord::Migrator.migrations_paths
  end

10 11 12 13
  def table_exists?(name)
    ActiveRecord::Base.connection.table_exists?(name)
  end

14 15 16 17
  def migrations
    ActiveRecord::Migrator.migrations(migrations_paths)
  end

18
  def reset_column_in_migration_models
19 20 21
    ActiveRecord::Base.connection_pool.connections.each do |conn|
      conn.schema_cache.clear!
    end
22

23 24 25 26 27 28 29 30 31
    described_class.constants.sort.each do |name|
      const = described_class.const_get(name)

      if const.is_a?(Class) && const < ActiveRecord::Base
        const.reset_column_information
      end
    end
  end

32 33 34 35 36 37
  def previous_migration
    migrations.each_cons(2) do |previous, migration|
      break previous if migration.name == described_class.name
    end
  end

38 39 40 41 42
  def migration_schema_version
    self.class.metadata[:schema] || previous_migration.version
  end

  def schema_migrate_down!
43 44 45 46 47
    disable_migrations_output do
      ActiveRecord::Migrator.migrate(migrations_paths,
                                     migration_schema_version)
    end

48 49 50 51
    reset_column_in_migration_models
  end

  def schema_migrate_up!
52 53 54 55
    disable_migrations_output do
      ActiveRecord::Migrator.migrate(migrations_paths)
    end

56 57 58
    reset_column_in_migration_models
  end

59 60 61 62 63 64 65 66
  def disable_migrations_output
    ActiveRecord::Migration.verbose = false

    yield
  ensure
    ActiveRecord::Migration.verbose = true
  end

67 68 69 70 71 72
  def migrate!
    ActiveRecord::Migrator.up(migrations_paths) do |migration|
      migration.name == described_class.name
    end
  end
end