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