aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2010-12-12 17:03:41 +0000
committerVijay Dev <vijaydev.cse@gmail.com>2010-12-16 01:49:30 +0530
commit491ce5b6ce1a3af42d02efff9a2e42b1a8980553 (patch)
treef6426bd1640273d10ee2bd8ce6db177c00da97bc /activerecord/test/schema
parenteba76640862d071d89c846f8624d1e651d872794 (diff)
downloadrails-491ce5b6ce1a3af42d02efff9a2e42b1a8980553.tar.gz
rails-491ce5b6ce1a3af42d02efff9a2e42b1a8980553.tar.bz2
rails-491ce5b6ce1a3af42d02efff9a2e42b1a8980553.zip
Verify that creating a has_many through record where there is a default_scope on the join model works correctly (creates the join record with the default scope applied)
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/schema.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb
index d4eb56c4d7..177045ac51 100644
--- a/activerecord/test/schema/schema.rb
+++ b/activerecord/test/schema/schema.rb
@@ -112,6 +112,7 @@ ActiveRecord::Schema.define do
t.column :category_id, :integer
t.column :post_id, :integer
t.column :author_id, :integer
+ t.column :special, :boolean
end
create_table :citations, :force => true do |t|