Hi,
Is there a way to create GIN indices in the data modeler? I've searched the documentation and forum, but couldn't find anything about this topic.
CREATE INDEX trgm_idx ON users USING GIN (column gin_trgm_ops);
CREATE INDEX gin_idx_name ON users USING gin(to_tsvector('english',column));
Thank you.
Jan