Methods

Instance Public methods

bigserial(*names, **options)

🔎 See on GitHub

bit(*names, **options)

🔎 See on GitHub

bit_varying(*names, **options)

🔎 See on GitHub

box(*names, **options)

🔎 See on GitHub

cidr(*names, **options)

🔎 See on GitHub

circle(*names, **options)

🔎 See on GitHub

citext(*names, **options)

🔎 See on GitHub

daterange(*names, **options)

🔎 See on GitHub

enum(*names, **options)

📝 Source code
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 184
        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, :timestamptz, :enum
        end
🔎 See on GitHub

hstore(*names, **options)

🔎 See on GitHub

inet(*names, **options)

🔎 See on GitHub

int4range(*names, **options)

🔎 See on GitHub

int8range(*names, **options)

🔎 See on GitHub

interval(*names, **options)

🔎 See on GitHub

jsonb(*names, **options)

🔎 See on GitHub

line(*names, **options)

🔎 See on GitHub

lseg(*names, **options)

🔎 See on GitHub

ltree(*names, **options)

🔎 See on GitHub

macaddr(*names, **options)

🔎 See on GitHub

money(*names, **options)

🔎 See on GitHub

numrange(*names, **options)

🔎 See on GitHub

oid(*names, **options)

🔎 See on GitHub

path(*names, **options)

🔎 See on GitHub

point(*names, **options)

🔎 See on GitHub

polygon(*names, **options)

🔎 See on GitHub

primary_key(name, type = :primary_key, **options)

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.

📝 Source code
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 48
        def primary_key(name, type = :primary_key, **options)
          if type == :uuid
            options[:default] = options.fetch(:default, "gen_random_uuid()")
          end

          super
        end
🔎 See on GitHub

serial(*names, **options)

🔎 See on GitHub

timestamptz(*names, **options)

🔎 See on GitHub

tsrange(*names, **options)

🔎 See on GitHub

tstzrange(*names, **options)

🔎 See on GitHub

tsvector(*names, **options)

🔎 See on GitHub

uuid(*names, **options)

🔎 See on GitHub

xml(*names, **options)

🔎 See on GitHub