update schema.sql
Some checks failed
Basic test / Build and sanity check (pull_request) Failing after 1m53s

This commit is contained in:
Roy Crihfield 2024-07-25 19:16:19 +08:00
parent d0fffa2deb
commit 375c08de68

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