aboutsummaryrefslogtreecommitdiff
path: root/verify/articles.sql
blob: 56526d7dcce98f1dfa7412f8c24fd737dbdb6d09 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
-- Verify diary:articles on pg

BEGIN;

SET search_path to diary;

SELECT id, timestamp, hash, title, body
  FROM articles
 WHERE FALSE;

ROLLBACK;