mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-09 01:44:02 +00:00
9 lines
188 B
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;
|
|
|