aboutsummaryrefslogtreecommitdiff
path: root/deploy/transactions_type_code.sql
blob: 5c29ec9de842bfa04cc2bc5881d6a3aaec7fed1c (plain)
1
2
3
4
5
6
7
8
-- Deploy kakeibo:transactions_type_code to pg
-- requires: transactions

BEGIN;

ALTER TABLE kakeibo.transactions RENAME COLUMN type to type_code;

COMMIT;