summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--deploy/diaries.sql1
-rw-r--r--verify/diaries.sql2
2 files changed, 2 insertions, 1 deletions
diff --git a/deploy/diaries.sql b/deploy/diaries.sql
index 3188490..f156ff1 100644
--- a/deploy/diaries.sql
+++ b/deploy/diaries.sql
@@ -9,6 +9,7 @@ SET search_path to photos;
CREATE TABLE diaries (
id UUID PRIMARY KEY,
photo_id UUID NOT NULL REFERENCES photos(id) ON DELETE RESTRICT ON UPDATE RESTRICT,
+ date DATE NOT NULL UNIQUE,
title TEXT NOT NULL,
entry TEXT NOT NULL,
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
diff --git a/verify/diaries.sql b/verify/diaries.sql
index 654c2ff..afdd875 100644
--- a/verify/diaries.sql
+++ b/verify/diaries.sql
@@ -4,7 +4,7 @@ BEGIN;
SET search_path to photos;
-SELECT id, photo_id, title, entry, created_at, updated_at
+SELECT id, photo_id, date, title, entry, created_at, updated_at
FROM diaries
WHERE FALSE;