Add eth.blob_hashes table #8

Merged
roysc merged 4 commits from add-blob-hashes-table into v5 2024-08-01 00:21:07 +00:00
Showing only changes of commit 375c08de68 - Show all commits

View File

@ -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: -
--