From 5f1e265ccbbca1dabc0a549243e44d5a7c93a7c1 Mon Sep 17 00:00:00 2001 From: Astrid Date: Sun, 11 Feb 2024 21:38:32 +0100 Subject: [PATCH] Add image queue to sql --- src/init.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/init.sql b/src/init.sql index 659e695..21a228f 100644 --- a/src/init.sql +++ b/src/init.sql @@ -16,4 +16,6 @@ create table if not exists images create index on images (original_url); create index on images (original_attachment_id); -create index on images (uploaded_by_account); \ No newline at end of file +create index on images (uploaded_by_account); + +create table if not exists image_queue (itemid serial primary key, url text not null, kind text not null); \ No newline at end of file