Rails3: model: replace deprecated 'before_save' method at Enumeration model

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7427 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-09-21 04:50:58 +00:00
parent 3268a190ae
commit 92403eb855
1 changed files with 2 additions and 1 deletions

View File

@ -25,6 +25,7 @@ class Enumeration < ActiveRecord::Base
acts_as_tree :order => 'position ASC'
before_destroy :check_integrity
before_save :check_default
validates_presence_of :name
validates_uniqueness_of :name, :scope => [:type, :project_id]
@ -51,7 +52,7 @@ class Enumeration < ActiveRecord::Base
nil
end
def before_save
def check_default
if is_default? && is_default_changed?
Enumeration.update_all("is_default = #{connection.quoted_false}", {:type => type})
end