Class: ActiveRecord::MigrationContext
- Inherits:
-
Object
- Object
- ActiveRecord::MigrationContext
- Defined in:
- lib/active_record/migration.rb
Overview
Migration Context
MigrationContext sets the context in which a migration is run.
A migration context requires the path to the migrations is set in the migrations_paths
parameter. Optionally a schema_migration
class can be provided. Multiple database applications will instantiate a SchemaMigration
object per database. From the Rake tasks, Rails will handle this for you.
Instance Attribute Summary collapse
-
#internal_metadata ⇒ Object
readonly
Returns the value of attribute internal_metadata.
-
#migrations_paths ⇒ Object
readonly
Returns the value of attribute migrations_paths.
-
#schema_migration ⇒ Object
readonly
Returns the value of attribute schema_migration.
Instance Method Summary collapse
-
#current_environment ⇒ Object
:nodoc:.
-
#current_version ⇒ Object
:nodoc:.
-
#down(target_version = nil, &block) ⇒ Object
:nodoc:.
-
#forward(steps = 1) ⇒ Object
:nodoc:.
-
#get_all_versions ⇒ Object
:nodoc:.
-
#initialize(migrations_paths, schema_migration = nil, internal_metadata = nil) ⇒ MigrationContext
constructor
A new instance of MigrationContext.
-
#last_stored_environment ⇒ Object
:nodoc:.
-
#migrate(target_version = nil, &block) ⇒ Object
Runs the migrations in the
migrations_path
. -
#migrations ⇒ Object
:nodoc:.
-
#migrations_status ⇒ Object
:nodoc:.
-
#needs_migration? ⇒ Boolean
:nodoc:.
-
#open ⇒ Object
:nodoc:.
-
#pending_migration_versions ⇒ Object
:nodoc:.
-
#protected_environment? ⇒ Boolean
:nodoc:.
-
#rollback(steps = 1) ⇒ Object
:nodoc:.
-
#run(direction, target_version) ⇒ Object
:nodoc:.
-
#up(target_version = nil, &block) ⇒ Object
:nodoc:.
Constructor Details
#initialize(migrations_paths, schema_migration = nil, internal_metadata = nil) ⇒ MigrationContext
Returns a new instance of MigrationContext.
1217 1218 1219 1220 1221 |
# File 'lib/active_record/migration.rb', line 1217 def initialize(migrations_paths, schema_migration = nil, = nil) @migrations_paths = migrations_paths @schema_migration = schema_migration || SchemaMigration.new(connection_pool) @internal_metadata = || InternalMetadata.new(connection_pool) end |
Instance Attribute Details
#internal_metadata ⇒ Object (readonly)
Returns the value of attribute internal_metadata.
1215 1216 1217 |
# File 'lib/active_record/migration.rb', line 1215 def @internal_metadata end |
#migrations_paths ⇒ Object (readonly)
Returns the value of attribute migrations_paths.
1215 1216 1217 |
# File 'lib/active_record/migration.rb', line 1215 def migrations_paths @migrations_paths end |
#schema_migration ⇒ Object (readonly)
Returns the value of attribute schema_migration.
1215 1216 1217 |
# File 'lib/active_record/migration.rb', line 1215 def schema_migration @schema_migration end |
Instance Method Details
#current_environment ⇒ Object
:nodoc:
1343 1344 1345 |
# File 'lib/active_record/migration.rb', line 1343 def current_environment # :nodoc: ActiveRecord::ConnectionHandling::DEFAULT_ENV.call end |
#current_version ⇒ Object
:nodoc:
1293 1294 1295 1296 |
# File 'lib/active_record/migration.rb', line 1293 def current_version # :nodoc: get_all_versions.max || 0 rescue ActiveRecord::NoDatabaseError end |
#down(target_version = nil, &block) ⇒ Object
:nodoc:
1267 1268 1269 1270 1271 1272 1273 1274 1275 |
# File 'lib/active_record/migration.rb', line 1267 def down(target_version = nil, &block) # :nodoc: selected_migrations = if block_given? migrations.select(&block) else migrations end Migrator.new(:down, selected_migrations, schema_migration, , target_version).migrate end |
#forward(steps = 1) ⇒ Object
:nodoc:
1253 1254 1255 |
# File 'lib/active_record/migration.rb', line 1253 def forward(steps = 1) # :nodoc: move(:up, steps) end |
#get_all_versions ⇒ Object
:nodoc:
1285 1286 1287 1288 1289 1290 1291 |
# File 'lib/active_record/migration.rb', line 1285 def get_all_versions # :nodoc: if schema_migration.table_exists? schema_migration.integer_versions else [] end end |
#last_stored_environment ⇒ Object
:nodoc:
1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 |
# File 'lib/active_record/migration.rb', line 1351 def last_stored_environment # :nodoc: = connection_pool. return nil unless .enabled? return nil if current_version == 0 raise NoEnvironmentInSchemaError unless .table_exists? environment = [:environment] raise NoEnvironmentInSchemaError unless environment environment end |
#migrate(target_version = nil, &block) ⇒ Object
Runs the migrations in the migrations_path
.
If target_version
is nil
, migrate
will run up
.
If the current_version
and target_version
are both 0 then an empty array will be returned and no migrations will be run.
If the current_version
in the schema is greater than the target_version
, then down
will be run.
If none of the conditions are met, up
will be run with the target_version
.
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 |
# File 'lib/active_record/migration.rb', line 1236 def migrate(target_version = nil, &block) case when target_version.nil? up(target_version, &block) when current_version == 0 && target_version == 0 [] when current_version > target_version down(target_version, &block) else up(target_version, &block) end end |
#migrations ⇒ Object
:nodoc:
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 |
# File 'lib/active_record/migration.rb', line 1306 def migrations # :nodoc: migrations = migration_files.map do |file| version, name, scope = parse_migration_filename(file) raise IllegalMigrationNameError.new(file) unless version if && !(version) raise InvalidMigrationTimestampError.new(version, name) end version = version.to_i name = name.camelize MigrationProxy.new(name, version, file, scope) end migrations.sort_by(&:version) end |
#migrations_status ⇒ Object
:nodoc:
1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 |
# File 'lib/active_record/migration.rb', line 1322 def migrations_status # :nodoc: db_list = schema_migration.normalized_versions file_list = migration_files.filter_map do |file| version, name, scope = parse_migration_filename(file) raise IllegalMigrationNameError.new(file) unless version if && !(version) raise InvalidMigrationTimestampError.new(version, name) end version = schema_migration.normalize_migration_number(version) status = db_list.delete(version) ? "up" : "down" [status, version, (name + scope).humanize] end db_list.map! do |version| ["up", version, "********** NO FILE **********"] end (db_list + file_list).sort_by { |_, version, _| version.to_i } end |
#needs_migration? ⇒ Boolean
:nodoc:
1298 1299 1300 |
# File 'lib/active_record/migration.rb', line 1298 def needs_migration? # :nodoc: pending_migration_versions.size > 0 end |
#open ⇒ Object
:nodoc:
1281 1282 1283 |
# File 'lib/active_record/migration.rb', line 1281 def open # :nodoc: Migrator.new(:up, migrations, schema_migration, ) end |
#pending_migration_versions ⇒ Object
:nodoc:
1302 1303 1304 |
# File 'lib/active_record/migration.rb', line 1302 def pending_migration_versions # :nodoc: migrations.collect(&:version) - get_all_versions end |
#protected_environment? ⇒ Boolean
:nodoc:
1347 1348 1349 |
# File 'lib/active_record/migration.rb', line 1347 def protected_environment? # :nodoc: ActiveRecord::Base.protected_environments.include?(last_stored_environment) if last_stored_environment end |
#rollback(steps = 1) ⇒ Object
:nodoc:
1249 1250 1251 |
# File 'lib/active_record/migration.rb', line 1249 def rollback(steps = 1) # :nodoc: move(:down, steps) end |
#run(direction, target_version) ⇒ Object
:nodoc:
1277 1278 1279 |
# File 'lib/active_record/migration.rb', line 1277 def run(direction, target_version) # :nodoc: Migrator.new(direction, migrations, schema_migration, , target_version).run end |
#up(target_version = nil, &block) ⇒ Object
:nodoc:
1257 1258 1259 1260 1261 1262 1263 1264 1265 |
# File 'lib/active_record/migration.rb', line 1257 def up(target_version = nil, &block) # :nodoc: selected_migrations = if block_given? migrations.select(&block) else migrations end Migrator.new(:up, selected_migrations, schema_migration, , target_version).migrate end |