blob: 8f18f5ae625619719b14e5f11ad68e37359f0300 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
|
-- Deploy kakeibo:transaction_type_to_integer to pg
-- requires: transactions
BEGIN;
ALTER TABLE kakeibo.transactions
ALTER COLUMN type TYPE integer
USING CASE type WHEN 'outgo' THEN 0 ELSE 1 END;
COMMIT;
|