aboutsummaryrefslogtreecommitdiff
-- Verify kakeibo:items on pg

BEGIN;

SELECT id,
       transaction_id,
       category,
       subcategory,
       amount,
       note,
       created_at,
       updated_at
  FROM kakeibo.items
 WHERE FALSE;

ROLLBACK;