aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/migration.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2012-01-13 13:34:54 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2012-01-13 14:33:59 -0800
commitb9323100253eafe6882f4c114fe6732dadc55cea (patch)
treec23080a08306aa98cbbce608a51bbc70e9359e45 /activerecord/lib/active_record/migration.rb
parent5e616379ccabce7196820ff517d34ed56ef2a160 (diff)
downloadrails-b9323100253eafe6882f4c114fe6732dadc55cea.tar.gz
rails-b9323100253eafe6882f4c114fe6732dadc55cea.tar.bz2
rails-b9323100253eafe6882f4c114fe6732dadc55cea.zip
convert the migration list to a Set, remove duplicate code
Diffstat (limited to 'activerecord/lib/active_record/migration.rb')
-rw-r--r--activerecord/lib/active_record/migration.rb30
1 files changed, 14 insertions, 16 deletions
diff --git a/activerecord/lib/active_record/migration.rb b/activerecord/lib/active_record/migration.rb
index 40274b3c2b..cd04667110 100644
--- a/activerecord/lib/active_record/migration.rb
+++ b/activerecord/lib/active_record/migration.rb
@@ -2,6 +2,7 @@ require "active_support/core_ext/module/delegation"
require "active_support/core_ext/class/attribute_accessors"
require 'active_support/deprecation'
require 'active_record/schema_migration'
+require 'set'
module ActiveRecord
# Exception that can be raised to stop migrations from going backwards.
@@ -655,8 +656,9 @@ module ActiveRecord
def initialize(direction, migrations, target_version = nil)
raise StandardError.new("This database does not yet support migrations") unless Base.connection.supports_migrations?
- @direction = direction
- @target_version = target_version
+ @direction = direction
+ @target_version = target_version
+ @migrated_versions = nil
if Array(migrations).grep(String).empty?
@migrations = migrations
@@ -671,12 +673,13 @@ module ActiveRecord
end
def current_version
- migrated.last || 0
+ migrated.sort.last || 0
end
def current_migration
migrations.detect { |m| m.version == current_version }
end
+ alias :current :current_migration
def run
target = migrations.detect { |m| m.version == @target_version }
@@ -728,16 +731,16 @@ block argument to migrate is deprecated, please filter migrations before constru
end
def migrations
- down? ? @migrations.reverse : @migrations
+ down? ? @migrations.reverse : @migrations.sort_by(&:version)
end
def pending_migrations
already_migrated = migrated
- migrations.reject { |m| already_migrated.include?(m.version.to_i) }
+ migrations.reject { |m| already_migrated.include?(m.version) }
end
def migrated
- @migrated_versions ||= self.class.get_all_versions
+ @migrated_versions ||= Set.new(self.class.get_all_versions)
end
private
@@ -745,10 +748,6 @@ block argument to migrate is deprecated, please filter migrations before constru
migrated.include?(migration.version.to_i)
end
- def current
- migrations.detect { |m| m.version == current_version }
- end
-
def target
migrations.detect { |m| m.version == @target_version }
end
@@ -770,12 +769,11 @@ block argument to migrate is deprecated, please filter migrations before constru
end
def record_version_state_after_migrating(version)
- @migrated_versions ||= []
if down?
- @migrated_versions.delete(version)
+ migrated.delete(version)
ActiveRecord::SchemaMigration.where(:version => version.to_s).delete_all
else
- @migrated_versions.push(version).sort!
+ migrated << version
ActiveRecord::SchemaMigration.create!(:version => version.to_s)
end
end
@@ -789,11 +787,11 @@ block argument to migrate is deprecated, please filter migrations before constru
end
# Wrap the migration in a transaction only if supported by the adapter.
- def ddl_transaction(&block)
+ def ddl_transaction
if Base.connection.supports_ddl_transactions?
- Base.transaction { block.call }
+ Base.transaction { yield }
else
- block.call
+ yield
end
end
end