From 40fd56052b03919b7ba5f07415e215a2b47df95f Mon Sep 17 00:00:00 2001 From: Ryuta Kamizono Date: Sat, 6 Feb 2016 14:31:35 +0900 Subject: Add numeric type in the doc [ci skip] Follow up to #23508. --- .../active_record/connection_adapters/abstract/schema_statements.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb index 983c4340c6..f0f855963a 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb @@ -459,7 +459,7 @@ module ActiveRecord # The +type+ parameter is normally one of the migrations native types, # which is one of the following: # :primary_key, :string, :text, - # :integer, :bigint, :float, :decimal, + # :integer, :bigint, :float, :decimal, :numeric, # :datetime, :time, :date, # :binary, :boolean. # @@ -477,9 +477,9 @@ module ActiveRecord # Allows or disallows +NULL+ values in the column. This option could # have been named :null_allowed. # * :precision - - # Specifies the precision for a :decimal column. + # Specifies the precision for the :decimal and :numeric columns. # * :scale - - # Specifies the scale for a :decimal column. + # Specifies the scale for the :decimal and :numeric columns. # # Note: The precision is the total number of significant digits # and the scale is the number of digits that can be stored following -- cgit v1.2.3