5eff2618ed
- Remove DataDog - Remove token_supply table - Drop from more tables when cleaning DB for tests
9 lines
235 B
SQL
9 lines
235 B
SQL
-- +goose Up
|
|
CREATE TABLE public.checked_headers (
|
|
id SERIAL PRIMARY KEY,
|
|
header_id INTEGER UNIQUE NOT NULL REFERENCES headers (id) ON DELETE CASCADE
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE public.checked_headers;
|