aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/topic.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2004-12-14 12:32:29 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2004-12-14 12:32:29 +0000
commit605bc77533cf3b6700e91eda8994cdf6b82341cc (patch)
tree687a1c7e3bd319be5c0a6090dea190d6a8778658 /activerecord/test/fixtures/topic.rb
parent317f13c2a8c047b3868a58e0121453b092557dba (diff)
downloadrails-605bc77533cf3b6700e91eda8994cdf6b82341cc.tar.gz
rails-605bc77533cf3b6700e91eda8994cdf6b82341cc.tar.bz2
rails-605bc77533cf3b6700e91eda8994cdf6b82341cc.zip
Added a better exception for when a type column is used in a table without the intention of triggering single-table inheritance. Added that single-table inheritance will only kick in if the inheritance_column (by default "type") is present. Otherwise, inheritance wont have any magic side effects
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@149 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/fixtures/topic.rb')
-rwxr-xr-xactiverecord/test/fixtures/topic.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/fixtures/topic.rb b/activerecord/test/fixtures/topic.rb
index 60022aa46b..4c46122450 100755
--- a/activerecord/test/fixtures/topic.rb
+++ b/activerecord/test/fixtures/topic.rb
@@ -3,7 +3,7 @@ class Topic < ActiveRecord::Base
serialize :content
before_create :default_written_on
- before_destroy :destroy_children #'self.class.delete_all "parent_id = #{id}"'
+ before_destroy :destroy_children
def parent
self.class.find(parent_id)