# File lib/active_record/connection_adapters/sybase_adapter.rb, line 94 def simplified_type(field_type) case field_type when /int|bigint|smallint|tinyint/i then :integer when /float|double|real/i then :float when /decimal|money|numeric|smallmoney/i then :decimal when /text|ntext/i then :text when /binary|image|varbinary/i then :binary when /char|nchar|nvarchar|string|varchar/i then :string when /bit/i then :boolean when /datetime|smalldatetime/i then :datetime else super end end