8f5bc0a956
- Enables parsing additional values off the log if necessary - Also update Frob to reflect DSS changes (lad => urn) - Move Frob constants to shared directory
14 lines
353 B
SQL
14 lines
353 B
SQL
CREATE TABLE maker.frob (
|
|
id SERIAL PRIMARY KEY,
|
|
header_id INTEGER NOT NULL REFERENCES headers (id) ON DELETE CASCADE,
|
|
ilk bytea,
|
|
urn bytea,
|
|
dink NUMERIC,
|
|
dart NUMERIC,
|
|
ink NUMERIC,
|
|
art NUMERIC,
|
|
iart NUMERIC,
|
|
tx_idx INTEGER NOT NUll,
|
|
raw_log JSONB,
|
|
UNIQUE (header_id, tx_idx)
|
|
); |