Ralph::Migrations::Schema::FullTextIndexDefinition
Represents a full-text search GIN index
Creates a GIN index on a tsvector expression for efficient full-text search.
Example
create_table :articles do |t|
t.string :title
t.text :content
t.full_text_index :title
t.full_text_index [:title, :content], config: "english"
end
Constructors
Instance methods
columns
Sourceconfig
Sourcefastupdate
Sourcename
Sourcetable
Sourceto_drop_sql
Sourceto_sql
Source