- B
- C
- D
- E
- H
- I
- J
- L
- M
- N
- O
- P
- S
- T
- U
- X
Instance Public methods
bigserial(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 57
        
              bit(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 61
        
              bit_varying(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 65
        
              box(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 137
        
              cidr(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 69
        
              circle(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 149
        
              citext(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 73
        
              daterange(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 77
        
              enum(*names, **options) Link
# 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
hstore(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 81
        
              inet(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 85
        
              int4range(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 93
        
              int8range(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 97
        
              interval(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 89
        
              jsonb(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 101
        
              line(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 129
        
              lseg(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 133
        
              ltree(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 105
        
              macaddr(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 109
        
              money(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 113
        
              numrange(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 117
        
              oid(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 121
        
              path(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 141
        
              point(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 125
        
              polygon(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 145
        
              primary_key(name, type = :primary_key, **options) Link
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.
serial(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 153
        
              timestamptz(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 177
        
              tsrange(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 157
        
              tstzrange(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 161
        
              tsvector(*names, **options) Link
Source: on GitHub
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_definitions.rb, line 165