Rename checked_logs => watched_logs

- We're logging that a given log has been included in any fetch calls
  for checked headers, rather than that we have already checked for
  that log
This commit is contained in:
Rob Mulholand
2019-09-10 21:22:14 -05:00
parent 13d503b851
commit 3f9b034c4c
9 changed files with 98 additions and 98 deletions
@@ -1,6 +1,6 @@
-- +goose Up
-- SQL in this section is executed when the migration is applied.
CREATE TABLE public.checked_logs
CREATE TABLE public.watched_logs
(
id SERIAL PRIMARY KEY,
contract_address VARCHAR(42),
@@ -9,4 +9,4 @@ CREATE TABLE public.checked_logs
-- +goose Down
-- SQL in this section is executed when the migration is rolled back.
DROP TABLE public.checked_logs;
DROP TABLE public.watched_logs;