Skip to content

Commit

Permalink
Add image queue to sql
Browse files Browse the repository at this point in the history
  • Loading branch information
xSke committed Feb 11, 2024
1 parent 1627df3 commit 5f1e265
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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);
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);

0 comments on commit 5f1e265

Please sign in to comment.