~singpolyma/jmp-schemas

ref: 240b3444466fb458b517d84c83bd6a782a21934e jmp-schemas/deploy/transactions.sql -rw-r--r-- 343 bytes
240b3444Stephen Paul Weber NOTIFY on low balance 1 year, 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-- Deploy jmp:transactions to pg

BEGIN;

CREATE TABLE transactions (
	customer_id    TEXT          NOT NULL,
	transaction_id TEXT          PRIMARY KEY,
	created_at     timestamp     NOT NULL DEFAULT(NOW()),
	amount         NUMERIC(12,4) NOT NULL,
	note           TEXT
);

CREATE INDEX ON transactions (customer_id, created_at DESC);

COMMIT;