Fix new migration versions

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9126 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson
2008-03-28 22:14:04 +00:00
parent a61b63d420
commit 3704f4ba2e
3 changed files with 10 additions and 5 deletions

View File

@@ -203,8 +203,9 @@ module ActionView
alias_method :tag_without_error_wrapping, :tag
def tag(name, options)
if object.respond_to?("errors") && object.errors.respond_to?("on")
error_wrapping(tag_without_error_wrapping(name, options), object.errors.on(@method_name))
if object.respond_to?("errors") && object.errors.respond_to?("on") && object.errors.on(@method_name)
# error_wrapping(tag_without_error_wrapping(name, options), object.errors.on(@method_name))
tag_without_error_wrapping(name, options.merge({ "class" => options["class"] ? "#{options["class"]} errors" : 'errors' }))
else
tag_without_error_wrapping(name, options)
end
@@ -212,8 +213,9 @@ module ActionView
alias_method :content_tag_without_error_wrapping, :content_tag
def content_tag(name, value, options)
if object.respond_to?("errors") && object.errors.respond_to?("on")
error_wrapping(content_tag_without_error_wrapping(name, value, options), object.errors.on(@method_name))
if object.respond_to?("errors") && object.errors.respond_to?("on") && object.errors.on(@method_name)
# error_wrapping(content_tag_without_error_wrapping(name, value, options), object.errors.on(@method_name))
content_tag_without_error_wrapping(name, value, options.merge({ "class" => options["class"] ? "#{options["class"]} errors" : 'errors' }))
else
content_tag_without_error_wrapping(name, value, options)
end

View File

@@ -343,7 +343,7 @@ module ActiveRecord
end
def run(direction, migrations_path, target_version)
self.new(direction, migrations_path, target_version)
self.new(direction, migrations_path, target_version).run
end
def schema_info_table_name

View File

@@ -104,6 +104,7 @@ namespace :db do
version = ENV["VERSION"] ? ENV["VERSION"].to_i : nil
raise "VERSION is required" unless version
ActiveRecord::Migrator.run(:up, "db/migrate/", version)
Rake::Task["db:schema:dump"].invoke if ActiveRecord::Base.schema_format == :ruby
end
desc 'Runs the "down" for a given migration VERSION.'
@@ -111,6 +112,7 @@ namespace :db do
version = ENV["VERSION"] ? ENV["VERSION"].to_i : nil
raise "VERSION is required" unless version
ActiveRecord::Migrator.run(:down, "db/migrate/", version)
Rake::Task["db:schema:dump"].invoke if ActiveRecord::Base.schema_format == :ruby
end
end
@@ -118,6 +120,7 @@ namespace :db do
task :rollback => :environment do
step = ENV['STEP'] ? ENV['STEP'].to_i : 1
ActiveRecord::Migrator.rollback('db/migrate/', step)
Rake::Task["db:schema:dump"].invoke if ActiveRecord::Base.schema_format == :ruby
end
desc 'Drops and recreates the database from db/schema.rb for the current environment.'