Merge pull request #8290 from cpatuzzo/master

Fixed a typo
This commit is contained in:
Carlos Antonio da Silva 2012-11-21 10:17:46 -08:00
commit 0cf3092e60

@ -540,7 +540,7 @@ def type_to_sql(type, limit = nil, precision = nil, scale = nil) #:nodoc:
column_type_sql << "(#{precision})" column_type_sql << "(#{precision})"
end end
elsif scale elsif scale
raise ArgumentError, "Error adding decimal column: precision cannot be empty if scale if specified" raise ArgumentError, "Error adding decimal column: precision cannot be empty if scale is specified"
end end
elsif (type != :primary_key) && (limit ||= native.is_a?(Hash) && native[:limit]) elsif (type != :primary_key) && (limit ||= native.is_a?(Hash) && native[:limit])