aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorbogdanvlviv <bogdanvlviv@gmail.com>2018-03-03 21:25:29 +0200
committerbogdanvlviv <bogdanvlviv@gmail.com>2018-03-04 20:44:30 +0200
commitce03e7d991a703c8d2e9c721902f312ccaeb5123 (patch)
tree7dc7371fb868b6bcea6e2d0ec4fb252920363839 /activerecord/test/schema
parent7d5a7b30cc79d91f3e3fa8ee81a077276947eb72 (diff)
downloadrails-ce03e7d991a703c8d2e9c721902f312ccaeb5123.tar.gz
rails-ce03e7d991a703c8d2e9c721902f312ccaeb5123.tar.bz2
rails-ce03e7d991a703c8d2e9c721902f312ccaeb5123.zip
Fix occurrences Fixnum|Bignum
Related to https://github.com/rails/rails/commit/d4eb0dc89ee6b476e2e10869dc282a96f956c6c7#r27830891
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/schema.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb
index 3f4fe16678..8b0106dbf0 100644
--- a/activerecord/test/schema/schema.rb
+++ b/activerecord/test/schema/schema.rb
@@ -547,7 +547,7 @@ ActiveRecord::Schema.define do
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
- t.decimal :world_population, precision: 10, scale: 0
+ t.decimal :world_population, precision: 20, scale: 0
t.decimal :my_house_population, precision: 2, scale: 0
t.decimal :decimal_number_with_default, precision: 3, scale: 2, default: 2.78
t.float :temperature