From 2fb413587fc1d34045a8724b0aac60e8e8051560 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Sat, 16 Mar 2024 03:02:02 +0900 Subject: Add table for tagging articles. --- verify/article_taggings.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 verify/article_taggings.sql (limited to 'verify') diff --git a/verify/article_taggings.sql b/verify/article_taggings.sql new file mode 100644 index 0000000..9947337 --- /dev/null +++ b/verify/article_taggings.sql @@ -0,0 +1,11 @@ +-- Verify diary:article_taggings on pg + +BEGIN; + +SET search_path to diary; + +SELECT article_id, tag_id + FROM article_taggings + WHERE FALSE; + +ROLLBACK; -- cgit v1.2.3