From 5039f9a506222b3f74312a4586166f5130e53817 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Mon, 11 Mar 2024 00:24:56 +0900 Subject: Add table manage diary articles. --- verify/articles.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 verify/articles.sql (limited to 'verify/articles.sql') diff --git a/verify/articles.sql b/verify/articles.sql new file mode 100644 index 0000000..9192a11 --- /dev/null +++ b/verify/articles.sql @@ -0,0 +1,11 @@ +-- Verify diary:articles on pg + +BEGIN; + +SET search_path to diary; + +SELECT id, timestamp, hash, title, body, created_at, updated_at + FROM articles + WHERE FALSE; + +ROLLBACK; -- cgit v1.2.3