mirror of https://github.com/LemmyNet/lemmy.git
8 lines
210 B
MySQL
8 lines
210 B
MySQL
|
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
|
||
|
);
|
||
|
|