Add log index to Tend

This commit is contained in:
Rob Mulholand
2018-10-23 15:25:21 -05:00
parent e0253cce55
commit db52955669
7 changed files with 42 additions and 13 deletions
@@ -4,9 +4,10 @@ CREATE TABLE maker.tend (
bid_id NUMERIC NOT NULL UNIQUE,
lot NUMERIC,
bid NUMERIC,
guy VARCHAR,
guy TEXT,
tic NUMERIC,
tx_idx INTEGER NOT NUll,
log_idx INTEGER NOT NUll,
tx_idx INTEGER NOT NUll,
raw_log JSONB,
UNIQUE (header_id, tx_idx)
UNIQUE (header_id, tx_idx, log_idx)
);
+4 -3
View File
@@ -685,8 +685,9 @@ CREATE TABLE maker.tend (
bid_id numeric NOT NULL,
lot numeric,
bid numeric,
guy character varying,
guy text,
tic numeric,
log_idx integer NOT NULL,
tx_idx integer NOT NULL,
raw_log jsonb
);
@@ -1994,11 +1995,11 @@ ALTER TABLE ONLY maker.price_feeds
--
-- Name: tend tend_header_id_tx_idx_key; Type: CONSTRAINT; Schema: maker; Owner: -
-- Name: tend tend_header_id_tx_idx_log_idx_key; Type: CONSTRAINT; Schema: maker; Owner: -
--
ALTER TABLE ONLY maker.tend
ADD CONSTRAINT tend_header_id_tx_idx_key UNIQUE (header_id, tx_idx);
ADD CONSTRAINT tend_header_id_tx_idx_log_idx_key UNIQUE (header_id, tx_idx, log_idx);
--