summaryrefslogtreecommitdiffstats
path: root/app/models/custom_field.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2006-12-26 17:11:44 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2006-12-26 17:11:44 +0000
commitb4d4b80dcd5327d66a4d9c910fb9022c9dd93c4f (patch)
treeab93f1acfb177e1c5cfbd1e36c8ad6c7e2e2821a /app/models/custom_field.rb
parent3bfaa20c057f97c25d4f8b68334bd4ff0f499887 (diff)
downloadredmine-b4d4b80dcd5327d66a4d9c910fb9022c9dd93c4f.tar.gz
redmine-b4d4b80dcd5327d66a4d9c910fb9022c9dd93c4f.zip
replaced deprecated ":dependent => true" statements
git-svn-id: http://redmine.rubyforge.org/svn/trunk@123 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models/custom_field.rb')
-rw-r--r--app/models/custom_field.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/custom_field.rb b/app/models/custom_field.rb
index 7dab23392..3626165b5 100644
--- a/app/models/custom_field.rb
+++ b/app/models/custom_field.rb
@@ -16,7 +16,7 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
class CustomField < ActiveRecord::Base
- has_many :custom_values, :dependent => true
+ has_many :custom_values, :dependent => :delete_all
FIELD_FORMATS = { "string" => { :name => :label_string, :order => 1 },
"text" => { :name => :label_text, :order => 2 },