module PhatPgsearch::PostgreSQL::PostgreSQLColumn

Public Instance Methods

pgsearch_index(table) click to toggle source
# File lib/phat_pgsearch/postgresql.rb, line 37
def pgsearch_index(table)

end
simplified_type(field_type) click to toggle source
Calls superclass method
# File lib/phat_pgsearch/postgresql.rb, line 41
def simplified_type(field_type)
  if field_type == 'tsvector'
    :string
  else
    super(field_type)
  end
end