module ArJdbc::Informix::ColumnMethods

Private Instance Methods

simplified_type(field_type) click to toggle source

TODO: Test all Informix column types.

Calls superclass method
# File lib/arjdbc/informix/adapter.rb, line 52
def simplified_type(field_type)
  if field_type =~ /serial/i
    :primary_key
  else
    super
  end
end