blob: 3dc2a9a8866a38562ee2b45e0506ec630ef9dc25 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
-- Verify kakeibo:transactions on pg
BEGIN;
SELECT id,
type,
date,
note,
created_at,
updated_at,
article_id
FROM kakeibo.transactions
WHERE FALSE;
ROLLBACK;
|