-- -- PostgreSQL database dump -- -- Dumped from database version 10.0 -- Dumped by pg_dump version 10.0 SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SET check_function_bodies = false; SET client_min_messages = warning; SET row_security = off; -- -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; -- -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: - -- COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; SET search_path = public, pg_catalog; SET default_tablespace = ''; SET default_with_oids = false; -- -- Name: blocks; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE blocks ( block_number bigint, block_gaslimit double precision, block_gasused double precision, block_time double precision, id integer NOT NULL ); -- -- Name: blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE blocks_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE blocks_id_seq OWNED BY blocks.id; -- -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE schema_migrations ( version bigint NOT NULL, dirty boolean NOT NULL ); -- -- Name: transactions; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE transactions ( id integer NOT NULL, tx_hash character varying(66), tx_nonce numeric, tx_to character varying(66), tx_gaslimit numeric, tx_gasprice numeric, tx_value numeric, block_id integer NOT NULL ); -- -- Name: transactions_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE transactions_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: transactions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE transactions_id_seq OWNED BY transactions.id; -- -- Name: blocks id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY blocks ALTER COLUMN id SET DEFAULT nextval('blocks_id_seq'::regclass); -- -- Name: transactions id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY transactions ALTER COLUMN id SET DEFAULT nextval('transactions_id_seq'::regclass); -- -- Name: blocks blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY blocks ADD CONSTRAINT blocks_pkey PRIMARY KEY (id); -- -- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY schema_migrations ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version); -- -- Name: transactions transactions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY transactions ADD CONSTRAINT transactions_pkey PRIMARY KEY (id); -- -- Name: block_number_index; Type: INDEX; Schema: public; Owner: - -- CREATE INDEX block_number_index ON blocks USING btree (block_number); -- -- Name: transactions fk_test; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY transactions ADD CONSTRAINT fk_test FOREIGN KEY (block_id) REFERENCES blocks(id); -- -- PostgreSQL database dump complete --