add woe to storage diff vow contract
This commit is contained in:
+53
-6
@@ -1613,7 +1613,7 @@ CREATE TABLE maker.vow_ash (
|
||||
id integer NOT NULL,
|
||||
block_number bigint,
|
||||
block_hash text,
|
||||
ash text
|
||||
ash numeric
|
||||
);
|
||||
|
||||
|
||||
@@ -1645,7 +1645,7 @@ CREATE TABLE maker.vow_bump (
|
||||
id integer NOT NULL,
|
||||
block_number bigint,
|
||||
block_hash text,
|
||||
bump text
|
||||
bump numeric
|
||||
);
|
||||
|
||||
|
||||
@@ -1743,7 +1743,7 @@ CREATE TABLE maker.vow_hump (
|
||||
id integer NOT NULL,
|
||||
block_number bigint,
|
||||
block_hash text,
|
||||
hump text
|
||||
hump numeric
|
||||
);
|
||||
|
||||
|
||||
@@ -1807,7 +1807,7 @@ CREATE TABLE maker.vow_sin (
|
||||
id integer NOT NULL,
|
||||
block_number bigint,
|
||||
block_hash text,
|
||||
sin text
|
||||
sin numeric
|
||||
);
|
||||
|
||||
|
||||
@@ -1839,7 +1839,7 @@ CREATE TABLE maker.vow_sump (
|
||||
id integer NOT NULL,
|
||||
block_number bigint,
|
||||
block_hash text,
|
||||
sump text
|
||||
sump numeric
|
||||
);
|
||||
|
||||
|
||||
@@ -1903,7 +1903,7 @@ CREATE TABLE maker.vow_wait (
|
||||
id integer NOT NULL,
|
||||
block_number bigint,
|
||||
block_hash text,
|
||||
wait text
|
||||
wait numeric
|
||||
);
|
||||
|
||||
|
||||
@@ -1927,6 +1927,38 @@ CREATE SEQUENCE maker.vow_wait_id_seq
|
||||
ALTER SEQUENCE maker.vow_wait_id_seq OWNED BY maker.vow_wait.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: vow_woe; Type: TABLE; Schema: maker; Owner: -
|
||||
--
|
||||
|
||||
CREATE TABLE maker.vow_woe (
|
||||
id integer NOT NULL,
|
||||
block_number bigint,
|
||||
block_hash text,
|
||||
woe numeric
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: vow_woe_id_seq; Type: SEQUENCE; Schema: maker; Owner: -
|
||||
--
|
||||
|
||||
CREATE SEQUENCE maker.vow_woe_id_seq
|
||||
AS integer
|
||||
START WITH 1
|
||||
INCREMENT BY 1
|
||||
NO MINVALUE
|
||||
NO MAXVALUE
|
||||
CACHE 1;
|
||||
|
||||
|
||||
--
|
||||
-- Name: vow_woe_id_seq; Type: SEQUENCE OWNED BY; Schema: maker; Owner: -
|
||||
--
|
||||
|
||||
ALTER SEQUENCE maker.vow_woe_id_seq OWNED BY maker.vow_woe.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: logs; Type: TABLE; Schema: public; Owner: -
|
||||
--
|
||||
@@ -2758,6 +2790,13 @@ ALTER TABLE ONLY maker.vow_vat ALTER COLUMN id SET DEFAULT nextval('maker.vow_va
|
||||
ALTER TABLE ONLY maker.vow_wait ALTER COLUMN id SET DEFAULT nextval('maker.vow_wait_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Name: vow_woe id; Type: DEFAULT; Schema: maker; Owner: -
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY maker.vow_woe ALTER COLUMN id SET DEFAULT nextval('maker.vow_woe_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Name: blocks id; Type: DEFAULT; Schema: public; Owner: -
|
||||
--
|
||||
@@ -3491,6 +3530,14 @@ ALTER TABLE ONLY maker.vow_wait
|
||||
ADD CONSTRAINT vow_wait_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: vow_woe vow_woe_pkey; Type: CONSTRAINT; Schema: maker; Owner: -
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY maker.vow_woe
|
||||
ADD CONSTRAINT vow_woe_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: blocks blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user