lemmy/migrations/2023-10-24-131607_proxy_links/up.sql

9 lines
188 B
SQL

CREATE TABLE remote_image (
id serial PRIMARY KEY,
link text NOT NULL UNIQUE,
published timestamptz DEFAULT now() NOT NULL
);
ALTER TABLE image_upload RENAME TO local_image;