BLOG-133 Unique label name and semantic ID #135

Merged
squid merged 4 commits from BLOG-133_unique_label_name into main 2025-10-12 21:16:36 +08:00
2 changed files with 4 additions and 0 deletions
Showing only changes of commit 88aceb3a51 - Show all commits

View File

@ -0,0 +1,2 @@
-- Remove unique index from label name column
DROP INDEX IF EXISTS "idx_label_name";

View File

@ -0,0 +1,2 @@
-- Add unique index to label name column
CREATE UNIQUE INDEX "idx_label_name" ON "label" ("name");