method
extract_limit
v4.0.2 -
Show latest stable
- Class:
ActiveRecord::ConnectionAdapters::PostgreSQLColumn
extract_limit(sql_type)private
No documentation available.
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 149
def extract_limit(sql_type)
case sql_type
when /^bigint/; 8
when /^smallint/; 2
when /^timestamp/; nil
else super
end
end