remove miner table

This commit is contained in:
greg 2018-06-03 10:06:25 -04:00
parent 1303dd291e
commit 952648549f
2 changed files with 0 additions and 6 deletions

View file

@ -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
);

View file

@ -2,4 +2,3 @@ DROP TABLE txs;
DROP TABLE blocks;
DROP TABLE accounts;
DROP TABLE contracts;
DROP TABLE mined_blocks;