summaryrefslogtreecommitdiff
path: root/verify
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2023-08-31 00:31:37 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2023-10-13 02:13:19 +0900
commit67cabf314b2b60c81454682f9259c3c207f71a73 (patch)
treed7a32d4addea4913d55607863d0ea56fea8e573c /verify
parent9fb64fe1519512308764bce7056250751ae4f32f (diff)
Add date column to date table
Diffstat (limited to 'verify')
-rw-r--r--verify/diaries.sql2
1 files changed, 1 insertions, 1 deletions
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;