lemmy/migrations/2024-03-06-201637_url_block.../up.sql

8 lines
210 B
SQL

CREATE TABLE local_site_url_blocklist (
id serial NOT NULL PRIMARY KEY,
url text NOT NULL UNIQUE,
published timestamp with time zone NOT NULL DEFAULT now(),
updated timestamp with time zone
);