diff --git a/schema.sql b/schema.sql index d426acc..4be10e3 100644 --- a/schema.sql +++ b/schema.sql @@ -190,6 +190,17 @@ SET default_tablespace = ''; SET default_table_access_method = heap; +-- +-- Name: blob_hashes; Type: TABLE; Schema: eth; Owner: - +-- + +CREATE TABLE eth.blob_hashes ( + tx_hash character varying(66) NOT NULL, + index integer NOT NULL, + blob_hash bytea NOT NULL +); + + -- -- Name: header_cids; Type: TABLE; Schema: eth; Owner: - -- @@ -554,6 +565,13 @@ ALTER TABLE ONLY public.nodes ADD CONSTRAINT nodes_pkey PRIMARY KEY (node_id); +-- +-- Name: blob_hashes_tx_hash_index; Type: INDEX; Schema: eth; Owner: - +-- + +CREATE UNIQUE INDEX blob_hashes_tx_hash_index ON eth.blob_hashes USING btree (tx_hash, index); + + -- -- Name: header_block_number_index; Type: INDEX; Schema: eth; Owner: - --