mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
6 lines
369 B
SQL
6 lines
369 B
SQL
DROP INDEX templates_organization_id_name_idx;
|
|
CREATE UNIQUE INDEX templates_organization_id_name_idx ON templates USING btree (organization_id, name) WHERE deleted = false;
|
|
CREATE UNIQUE INDEX idx_templates_name_lower ON templates USING btree (lower(name));
|
|
|
|
ALTER TABLE ONLY templates ADD CONSTRAINT templates_organization_id_name_key UNIQUE (organization_id, name);
|