Class: ActiveRecord::Migrator
- Defined in:
- activerecord/lib/active_record/migration.rb
Overview
:nodoc:
Class Attribute Summary collapse
-
.migrations_paths ⇒ Object
Returns the value of attribute migrations_paths.
Class Method Summary collapse
-
.current_version ⇒ Object
For cases where a table doesn’t exist like loading from schema cache.
Instance Method Summary collapse
- #current_migration ⇒ Object (also: #current)
- #current_version ⇒ Object
-
#initialize(direction, migrations, schema_migration, target_version = nil) ⇒ Migrator
constructor
A new instance of Migrator.
- #load_migrated ⇒ Object
- #migrate ⇒ Object
- #migrated ⇒ Object
- #migrations ⇒ Object
- #pending_migrations ⇒ Object
- #run ⇒ Object
- #runnable ⇒ Object
Constructor Details
#initialize(direction, migrations, schema_migration, target_version = nil) ⇒ Migrator
Returns a new instance of Migrator.
1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 |
# File 'activerecord/lib/active_record/migration.rb', line 1199 def initialize(direction, migrations, schema_migration, target_version = nil) @direction = direction @target_version = target_version @migrated_versions = nil @migrations = migrations @schema_migration = schema_migration validate(@migrations) @schema_migration.create_table ActiveRecord::InternalMetadata.create_table end |
Class Attribute Details
.migrations_paths ⇒ Object
Returns the value of attribute migrations_paths
1189 1190 1191 |
# File 'activerecord/lib/active_record/migration.rb', line 1189 def migrations_paths @migrations_paths end |
Class Method Details
.current_version ⇒ Object
For cases where a table doesn’t exist like loading from schema cache
1192 1193 1194 |
# File 'activerecord/lib/active_record/migration.rb', line 1192 def current_version MigrationContext.new(migrations_paths, SchemaMigration).current_version end |
Instance Method Details
#current_migration ⇒ Object Also known as: current
1216 1217 1218 |
# File 'activerecord/lib/active_record/migration.rb', line 1216 def current_migration migrations.detect { |m| m.version == current_version } end |
#current_version ⇒ Object
1212 1213 1214 |
# File 'activerecord/lib/active_record/migration.rb', line 1212 def current_version migrated.max || 0 end |
#load_migrated ⇒ Object
1261 1262 1263 |
# File 'activerecord/lib/active_record/migration.rb', line 1261 def load_migrated @migrated_versions = Set.new(@schema_migration.all_versions.map(&:to_i)) end |
#migrate ⇒ Object
1229 1230 1231 1232 1233 1234 1235 |
# File 'activerecord/lib/active_record/migration.rb', line 1229 def migrate if use_advisory_lock? with_advisory_lock { migrate_without_lock } else migrate_without_lock end end |
#migrated ⇒ Object
1257 1258 1259 |
# File 'activerecord/lib/active_record/migration.rb', line 1257 def migrated @migrated_versions || load_migrated end |
#migrations ⇒ Object
1248 1249 1250 |
# File 'activerecord/lib/active_record/migration.rb', line 1248 def migrations down? ? @migrations.reverse : @migrations.sort_by(&:version) end |
#pending_migrations ⇒ Object
1252 1253 1254 1255 |
# File 'activerecord/lib/active_record/migration.rb', line 1252 def pending_migrations already_migrated = migrated migrations.reject { |m| already_migrated.include?(m.version) } end |
#run ⇒ Object
1221 1222 1223 1224 1225 1226 1227 |
# File 'activerecord/lib/active_record/migration.rb', line 1221 def run if use_advisory_lock? with_advisory_lock { run_without_lock } else run_without_lock end end |
#runnable ⇒ Object
1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 |
# File 'activerecord/lib/active_record/migration.rb', line 1237 def runnable runnable = migrations[start..finish] if up? runnable.reject { |m| ran?(m) } else # skip the last migration if we're headed down, but not ALL the way down runnable.pop if target runnable.find_all { |m| ran?(m) } end end |