aboutsummaryrefslogtreecommitdiff
path: root/deploy/tags.sql
diff options
context:
space:
mode:
Diffstat (limited to 'deploy/tags.sql')
-rw-r--r--deploy/tags.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/deploy/tags.sql b/deploy/tags.sql
index 3bee8ed..82a550a 100644
--- a/deploy/tags.sql
+++ b/deploy/tags.sql
@@ -6,7 +6,7 @@ BEGIN;
SET search_path to diary;
CREATE TABLE tags(
- id INT PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
+ tag_id INT PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
name varchar UNIQUE NOT NULL
);