Currently, as far as I know, it's not possible to create a trgm gin index 
using the migrations DSL without resorting to plain SQL.

For example, I'd like to be able to use something like this (assuming 
another migration has already "run 'create extension pgtrgm'" previously):

def change
    create_table(:sample) do
      text :value
      index :value, type: :gin, operator: :gin_trgm_ops
    end
end

Could that be added for the PG adapter at least?

-- 
You received this message because you are subscribed to the Google Groups 
"sequel-talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/sequel-talk.
For more options, visit https://groups.google.com/d/optout.

Reply via email to