aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorMehmet Emin İNAÇ <mehmetemininac@gmail.com>2016-02-14 01:59:11 +0200
committerMehmet Emin İNAÇ <mehmetemininac@gmail.com>2016-03-08 14:56:00 +0200
commit0784dccc4fb8322ad88717efb31d37553542532b (patch)
treed6d72c74331ffa52ecae79acb13967683bcd0ffe /activerecord/test/schema
parenta61bf5f5b63780a3e0b4c2d4339967df82b370de (diff)
downloadrails-0784dccc4fb8322ad88717efb31d37553542532b.tar.gz
rails-0784dccc4fb8322ad88717efb31d37553542532b.tar.bz2
rails-0784dccc4fb8322ad88717efb31d37553542532b.zip
Execute default_scope defined by abstract class within the scope of subclass
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/schema.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb
index 2a8996f35c..01dbf2cee6 100644
--- a/activerecord/test/schema/schema.rb
+++ b/activerecord/test/schema/schema.rb
@@ -421,6 +421,11 @@ ActiveRecord::Schema.define do
t.integer :amount
end
+ create_table :lions, force: true do |t|
+ t.integer :gender
+ t.boolean :is_vegetarian, default: false
+ end
+
create_table :lock_without_defaults, force: true do |t|
t.column :lock_version, :integer
end