Log checked headers for dent events

This commit is contained in:
Rob Mulholand
2018-09-25 14:11:35 -05:00
parent c3f1fcf796
commit d8b1a61ff5
11 changed files with 222 additions and 72 deletions
@@ -0,0 +1,2 @@
ALTER TABLE public.checked_headers
DROP COLUMN dent_checked;
@@ -0,0 +1,2 @@
ALTER TABLE public.checked_headers
ADD COLUMN dent_checked BOOLEAN NOT NULL DEFAULT FALSE;
+2 -1
View File
@@ -670,7 +670,8 @@ CREATE TABLE public.checked_headers (
id integer NOT NULL,
header_id integer NOT NULL,
price_feeds_checked boolean DEFAULT false NOT NULL,
deal_checked boolean DEFAULT false NOT NULL
deal_checked boolean DEFAULT false NOT NULL,
dent_checked boolean DEFAULT false NOT NULL
);