forked from zanfranceschi/rinha-de-backend-2024-q1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.sql
32 lines (27 loc) · 851 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
ALTER SYSTEM SET TIMEZONE TO 'UTC';
CREATE TYPE tipo_movimentacao AS ENUM ('c', 'd');
CREATE UNLOGGED TABLE clientes (
id SERIAL PRIMARY KEY,
nome VARCHAR(255) NOT NULL,
saldo INTEGER NOT NULL DEFAULT 0,
limite INTEGER NOT NULL
);
CREATE UNLOGGED TABLE transacoes (
id SERIAL PRIMARY KEY,
id_cliente INTEGER NOT NULL REFERENCES clientes(id),
tipo tipo_movimentacao NOT NULL,
valor INTEGER NOT NULL,
descricao VARCHAR(10) NOT NULL,
realizada_em TIMESTAMPTZ NOT NULL DEFAULT NOW()
);
CREATE INDEX idx_ultima_transacoes_por_cliente ON transacoes (id_cliente, realizada_em DESC);
DO $$
BEGIN
INSERT INTO clientes (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);
END; $$