about summary refs log tree commit diff
path: root/migrations
diff options
context:
space:
mode:
Diffstat (limited to 'migrations')
-rw-r--r--migrations/auth/20221110_01_WtZ1I-create-resources-table.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/migrations/auth/20221110_01_WtZ1I-create-resources-table.py b/migrations/auth/20221110_01_WtZ1I-create-resources-table.py
index 0b769b8..abc8895 100644
--- a/migrations/auth/20221110_01_WtZ1I-create-resources-table.py
+++ b/migrations/auth/20221110_01_WtZ1I-create-resources-table.py
@@ -12,7 +12,7 @@ steps = [
         CREATE TABLE IF NOT EXISTS resources(
             group_id TEXT NOT NULL,
             resource_id TEXT NOT NULL,
-            resource_name TEXT NOT NULL,
+            resource_name TEXT NOT NULL UNIQUE,
             resource_category_id TEXT NOT NULL,
             PRIMARY KEY(group_id, resource_id),
             FOREIGN KEY(group_id) REFERENCES groups(group_id)