Files

Class/Module Index [+]

Quicksearch

ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::ColumnMethods

Public Instance Methods

cidr(name, options = {}) click to toggle source
# File lib/arjdbc/postgresql/adapter.rb, line 1380
def cidr(name, options = {})
  column(name, 'cidr', options)
end
daterange(name, options = {}) click to toggle source
# File lib/arjdbc/postgresql/adapter.rb, line 1364
def daterange(name, options = {})
  column(name, 'daterange', options)
end
hstore(name, options = {}) click to toggle source
# File lib/arjdbc/postgresql/adapter.rb, line 1368
def hstore(name, options = {})
  column(name, 'hstore', options)
end
inet(name, options = {}) click to toggle source
# File lib/arjdbc/postgresql/adapter.rb, line 1376
def inet(name, options = {})
  column(name, 'inet', options)
end
int4range(name, options = {}) click to toggle source
# File lib/arjdbc/postgresql/adapter.rb, line 1344
def int4range(name, options = {})
  column(name, 'int4range', options)
end
int8range(name, options = {}) click to toggle source
# File lib/arjdbc/postgresql/adapter.rb, line 1348
def int8range(name, options = {})
  column(name, 'int8range', options)
end
json(name, options = {}) click to toggle source
# File lib/arjdbc/postgresql/adapter.rb, line 1392
def json(name, options = {})
  column(name, 'json', options)
end
ltree(name, options = {}) click to toggle source
# File lib/arjdbc/postgresql/adapter.rb, line 1372
def ltree(name, options = {})
  column(name, 'ltree', options)
end
macaddr(name, options = {}) click to toggle source
# File lib/arjdbc/postgresql/adapter.rb, line 1384
def macaddr(name, options = {})
  column(name, 'macaddr', options)
end
numrange(name, options = {}) click to toggle source
# File lib/arjdbc/postgresql/adapter.rb, line 1360
def numrange(name, options = {})
  column(name, 'numrange', options)
end
tsrange(name, options = {}) click to toggle source
# File lib/arjdbc/postgresql/adapter.rb, line 1352
def tsrange(name, options = {})
  column(name, 'tsrange', options)
end
tstzrange(name, options = {}) click to toggle source
# File lib/arjdbc/postgresql/adapter.rb, line 1356
def tstzrange(name, options = {})
  column(name, 'tstzrange', options)
end
tsvector(*args) click to toggle source
# File lib/arjdbc/postgresql/adapter.rb, line 1339
def tsvector(*args)
  options = args.extract_options!
  column(args[0], 'tsvector', options)
end
uuid(name, options = {}) click to toggle source
# File lib/arjdbc/postgresql/adapter.rb, line 1388
def uuid(name, options = {})
  column(name, 'uuid', options)
end
xml(*args) click to toggle source
# File lib/arjdbc/postgresql/adapter.rb, line 1334
def xml(*args)
  options = args.extract_options!
  column(args[0], 'xml', options)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.