Module: Apartment::Migrator

Extended by:
Migrator
Included in:
Migrator
Defined in:
lib/apartment/migrator.rb

Instance Method Summary collapse

Instance Method Details

#migrate(database) ⇒ Object

Migrate to latest



9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/apartment/migrator.rb', line 9

def migrate(database)
  Tenant.switch(database) do
    version = ENV["VERSION"] ? ENV["VERSION"].to_i : nil

    migration_scope_block = -> (migration) { ENV["SCOPE"].blank? || (ENV["SCOPE"] == migration.scope) }

    if activerecord_below_5_2?
      ActiveRecord::Migrator.migrate(ActiveRecord::Migrator.migrations_paths, version, &migration_scope_block)
    else
      ActiveRecord::Base.connection.migration_context.migrate(version, &migration_scope_block)
    end
  end
end

#rollback(database, step = 1) ⇒ Object

rollback latest migration ‘step` number of times



35
36
37
38
39
40
41
42
43
# File 'lib/apartment/migrator.rb', line 35

def rollback(database, step = 1)
  Tenant.switch(database) do
    if activerecord_below_5_2?
      ActiveRecord::Migrator.rollback(ActiveRecord::Migrator.migrations_paths, step)
    else
      ActiveRecord::Base.connection.migration_context.rollback(step)
    end
  end
end

#run(direction, database, version) ⇒ Object

Migrate up/down to a specific version



24
25
26
27
28
29
30
31
32
# File 'lib/apartment/migrator.rb', line 24

def run(direction, database, version)
  Tenant.switch(database) do
    if activerecord_below_5_2?
      ActiveRecord::Migrator.run(direction, ActiveRecord::Migrator.migrations_paths, version)
    else
      ActiveRecord::Base.connection.migration_context.run(direction, version)
    end
  end
end