Raw File
subject.subject.index_name.sql
-- Deploy subject.subject.name
-- requires: subject_subject

BEGIN;

CREATE INDEX subject_name_index on subject.subject using btree (name);

COMMIT;
back to top