diff options
Diffstat (limited to 'verify')
-rw-r--r-- | verify/articles.sql | 11 |
1 files changed, 11 insertions, 0 deletions
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; |