class ActiveRecord::ConnectionAdapters::NullDBAdapter::Column
Private Instance Methods
simplified_type(field_type)
click to toggle source
Calls superclass method
# File lib/active_record/connection_adapters/nulldb_adapter/column.rb, line 5 def simplified_type(field_type) type = super type = :integer if type.nil? && sql_type == :primary_key type end