-
Notifications
You must be signed in to change notification settings - Fork 923
/
Copy pathinit.sql
36 lines (29 loc) · 1003 Bytes
/
init.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
CREATE UNLOGGED TABLE cliente (
id SERIAL PRIMARY KEY,
nome VARCHAR(100) NOT NULL,
limite INTEGER NOT NULL DEFAULT 0,
saldo INTEGER NOT NULL DEFAULT 0
);
-- Verificar índices cliente
CREATE UNLOGGED TABLE transacao (
id SERIAL PRIMARY KEY,
cliente_id INTEGER NOT NULL,
valor INTEGER NOT NULL DEFAULT 0,
tipo CHAR(1) NOT NULL,
descricao VARCHAR(10) NOT NULL,
realizada_em TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
limite_atual INTEGER, -- somente para performance no retorno
saldo_atual INTEGER -- somente para performance no retorno
);
CREATE INDEX idx_transacao_cliente_id ON transacao (cliente_id);
INSERT INTO cliente (nome, limite)
VALUES
('o barato sai caro', 1000 * 100),
('zan corp ltda', 800 * 100),
('les cruders', 10000 * 100),
('padaria joia de cocaia', 100000 * 100),
('kid mais', 5000 * 100);
-- Insere valores iniciais
INSERT INTO transacao (cliente_id, valor, tipo, descricao, limite_atual, saldo_atual)
SELECT id, 0, 'i', 'inicial', limite, saldo
FROM cliente;