aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-03-05 04:38:19 +0900
committerGitHub <noreply@github.com>2018-03-05 04:38:19 +0900
commit78fe5778f6fda6f203f4e1f5c13139f8a5308619 (patch)
tree2e2ec788783b26e3499325f5207248a5fcdc8353 /activerecord/test/migrations/decimal/1_give_me_big_numbers.rb
parent4b09ef7b361edce985e72143ea9cb6d1c93de61e (diff)
parentce03e7d991a703c8d2e9c721902f312ccaeb5123 (diff)
downloadrails-78fe5778f6fda6f203f4e1f5c13139f8a5308619.tar.gz
rails-78fe5778f6fda6f203f4e1f5c13139f8a5308619.tar.bz2
rails-78fe5778f6fda6f203f4e1f5c13139f8a5308619.zip
Merge pull request #32165 from bogdanvlviv/fix-occurrences-Fixnum-Bignum
Fix occurrences Fixnum|Bignum
Diffstat (limited to 'activerecord/test/migrations/decimal/1_give_me_big_numbers.rb')
-rw-r--r--activerecord/test/migrations/decimal/1_give_me_big_numbers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb b/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb
index b892f50e41..7d4233fe31 100644
--- a/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb
+++ b/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb
@@ -5,7 +5,7 @@ class GiveMeBigNumbers < ActiveRecord::Migration::Current
create_table :big_numbers do |table|
table.column :bank_balance, :decimal, precision: 10, scale: 2
table.column :big_bank_balance, :decimal, precision: 15, scale: 2
- table.column :world_population, :decimal, precision: 10
+ table.column :world_population, :decimal, precision: 20
table.column :my_house_population, :decimal, precision: 2
table.column :value_of_e, :decimal
end