From 952648549f68980faac4458334768728c5532396 Mon Sep 17 00:00:00 2001 From: greg Date: Sun, 3 Jun 2018 10:06:25 -0400 Subject: [PATCH] remove miner table --- shyftDb/postgres_setup/create_tables.psql | 5 ----- shyftDb/postgres_setup/drop_tables.psql | 1 - 2 files changed, 6 deletions(-) diff --git a/shyftDb/postgres_setup/create_tables.psql b/shyftDb/postgres_setup/create_tables.psql index b0bdb516d3..687931f83c 100644 --- a/shyftDb/postgres_setup/create_tables.psql +++ b/shyftDb/postgres_setup/create_tables.psql @@ -41,8 +41,3 @@ CREATE TABLE IF NOT EXISTS accounts ( CREATE TABLE IF NOT EXISTS contracts ( txHash text ); - -CREATE TABLE IF NOT EXISTS mined_blocks ( - blockNumber bigint, - addr text -); \ No newline at end of file diff --git a/shyftDb/postgres_setup/drop_tables.psql b/shyftDb/postgres_setup/drop_tables.psql index 2921358098..6316b8109c 100644 --- a/shyftDb/postgres_setup/drop_tables.psql +++ b/shyftDb/postgres_setup/drop_tables.psql @@ -2,4 +2,3 @@ DROP TABLE txs; DROP TABLE blocks; DROP TABLE accounts; DROP TABLE contracts; -DROP TABLE mined_blocks; \ No newline at end of file