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:
parent
3268a190ae
commit
92403eb855
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue