aboutsummaryrefslogtreecommitdiff
path: root/verify/articles.sql
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2024-03-13 01:10:00 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2024-03-13 01:10:00 +0900
commit4414f92a106eed45901b949b99ffa67a88a89895 (patch)
tree2f7418147c1789c1d6ff5818c239749cecc4d5da /verify/articles.sql
parenta927b30705d1e8c6b1b046e7512cc67cbdf19a21 (diff)
Remove updated_at and created_at columns
Diffstat (limited to 'verify/articles.sql')
-rw-r--r--verify/articles.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/verify/articles.sql b/verify/articles.sql
index 9192a11..56526d7 100644
--- a/verify/articles.sql
+++ b/verify/articles.sql
@@ -4,7 +4,7 @@ BEGIN;
SET search_path to diary;
-SELECT id, timestamp, hash, title, body, created_at, updated_at
+SELECT id, timestamp, hash, title, body
FROM articles
WHERE FALSE;