module ActiveRecord::ConnectionAdapters::PostgreSQL::ColumnMethods

Public Instance Methods

bigserial(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 59
        
bit(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 63
        
bit_varying(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 67
        
box(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 139
        
cidr(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 71
        
circle(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 151
        
citext(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 75
        
daterange(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 79
        
hstore(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 83
        
inet(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 87
        
int4range(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 95
        
int8range(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 99
        
interval(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 91
        
jsonb(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 103
        
line(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 131
        
lseg(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 135
        
ltree(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 107
        
macaddr(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 111
        
money(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 115
        
numrange(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 119
        
oid(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 123
        
path(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 143
        
point(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 127
        
polygon(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 147
        
primary_key(name, type = :primary_key, **options) click to toggle source

Defines the primary key field. Use of the native PostgreSQL UUID type is supported, and can be used by defining your tables as such:

create_table :stuffs, id: :uuid do |t|
  t.string :content
  t.timestamps
end

By default, this will use the gen_random_uuid() function from the pgcrypto extension. As that extension is only available in PostgreSQL 9.4+, for earlier versions an explicit default can be set to use uuid_generate_v4() from the uuid-ossp extension instead:

create_table :stuffs, id: false do |t|
  t.primary_key :id, :uuid, default: "uuid_generate_v4()"
  t.uuid :foo_id
  t.timestamps
end

To enable the appropriate extension, which is a requirement, use the enable_extension method in your migrations.

To use a UUID primary key without any of the extensions, set the :default option to nil:

create_table :stuffs, id: false do |t|
  t.primary_key :id, :uuid, default: nil
  t.uuid :foo_id
  t.timestamps
end

You may also pass a custom stored procedure that returns a UUID or use a different UUID generation function from another library.

Note that setting the UUID primary key default value to nil will require you to assure that you always provide a UUID value before saving a record (as primary keys cannot be nil). This might be done via the SecureRandom.uuid method and a before_save callback, for instance.

Calls superclass method
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 47
def primary_key(name, type = :primary_key, **options)
  if type == :uuid
    options[:default] = options.fetch(:default, "gen_random_uuid()")
  end

  super
end
serial(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 155
        
tsrange(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 159
        
tstzrange(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 163
        
tsvector(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 167
        
uuid(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 171
        
xml(*names, **options) click to toggle source
# File lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 175
included do
  define_column_methods :bigserial, :bit, :bit_varying, :cidr, :citext, :daterange,
    :hstore, :inet, :interval, :int4range, :int8range, :jsonb, :ltree, :macaddr,
    :money, :numrange, :oid, :point, :line, :lseg, :box, :path, :polygon, :circle,
    :serial, :tsrange, :tstzrange, :tsvector, :uuid, :xml
end