Sha256: d8d0023974b8b519ab484c8c68e4e754f109d793513726e1430c98c919ecc4ea
Contents?: true
Size: 426 Bytes
Versions: 3
Compression:
Stored size: 426 Bytes
Contents
# Indexes ## Index types Postgres\_ext allows you to specify index type and index operator class at index creation. ```ruby add_index :table_name, :column, :index_type => :gin add_index :table_name, :column, :index_type => :gin, :index_opclass => :gin_trgm_ops ``` ## Where clauses Postgres\_ext allows you to specify a where clause at index creation. ```ruby add_index :table_name, :column, :where => 'column < 50' ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
postgres_ext-0.2.2 | docs/indexes.md |
postgres_ext-0.2.1 | docs/indexes.md |
postgres_ext-0.2.0 | docs/indexes.md |