5ac76eee74
- Don't need to maintain it on public.checked_headers if we're not adding additional columns to that table
13 lines
343 B
SQL
13 lines
343 B
SQL
-- +goose Up
|
|
-- SQL in this section is executed when the migration is applied.
|
|
CREATE TABLE public.checked_logs
|
|
(
|
|
id SERIAL PRIMARY KEY,
|
|
contract_address VARCHAR(42),
|
|
topic_zero VARCHAR(66)
|
|
);
|
|
|
|
-- +goose Down
|
|
-- SQL in this section is executed when the migration is rolled back.
|
|
DROP TABLE public.checked_logs;
|