From 0b61be466678233fbd693d44a4fae15adb6d925b Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Fri, 22 Sep 2006 00:11:33 +0000 Subject: use :dependent => :destroy rather than :dependent => true git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5160 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/fixtures/topic.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actionpack/test/fixtures/topic.rb b/actionpack/test/fixtures/topic.rb index 0929de7e08..0beeecf28d 100644 --- a/actionpack/test/fixtures/topic.rb +++ b/actionpack/test/fixtures/topic.rb @@ -1,3 +1,3 @@ class Topic < ActiveRecord::Base - has_many :replies, :include => [:user], :dependent => true -end \ No newline at end of file + has_many :replies, :include => [:user], :dependent => :destroy +end -- cgit v1.2.3