aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorMichael Ryan <perceptec@gmail.com>2015-02-18 17:55:48 -0500
committerMichael Ryan <perceptec@gmail.com>2015-02-18 18:30:05 -0500
commitb9a1e9a4b2289de199b214a542aa9fd3cb19be54 (patch)
treea9f68a591fd3d430e4a77295a85a1a54961ae481 /activerecord/test/schema
parent83be86933d7faf43ff1717f4258d54fc72d3193c (diff)
downloadrails-b9a1e9a4b2289de199b214a542aa9fd3cb19be54.tar.gz
rails-b9a1e9a4b2289de199b214a542aa9fd3cb19be54.tar.bz2
rails-b9a1e9a4b2289de199b214a542aa9fd3cb19be54.zip
Add `ActiveRecord::Base.suppress`
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/schema.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb
index a7d90e3f89..08a16d5c9e 100644
--- a/activerecord/test/schema/schema.rb
+++ b/activerecord/test/schema/schema.rb
@@ -468,6 +468,10 @@ ActiveRecord::Schema.define do
t.string :name
end
+ create_table :notifications, force: true do |t|
+ t.string :message
+ end
+
create_table :numeric_data, force: true do |t|
t.decimal :bank_balance, precision: 10, scale: 2
t.decimal :big_bank_balance, precision: 15, scale: 2