blob: 9192a113b8f11ccf321234a8cbd6e188e3b5e46d (
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, created_at, updated_at
FROM articles
WHERE FALSE;
ROLLBACK;
|