times_validated field in header

This commit is contained in:
Ian Norden
2020-04-04 15:45:54 -05:00
parent aa9f78a028
commit 060e3430c1
6 changed files with 31 additions and 1730 deletions
@@ -0,0 +1,13 @@
-- +goose Up
ALTER TABLE eth.header_cids
ADD COLUMN times_validated INTEGER NOT NULL DEFAULT 0;
ALTER TABLE btc.header_cids
ADD COLUMN times_validated INTEGER NOT NULL DEFAULT 0;
-- +goose Down
ALTER TABLE btc.header_cids
DROP COLUMN times_validated;
ALTER TABLE eth.header_cids
DROP COLUMN times_validated;