Skip to content

Commit

Permalink
Add page value for image jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
reasv committed Mar 29, 2021
1 parent 784b469 commit e8a7a4d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion migrations/20210329215000_create_image_backlog.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ CREATE TABLE image_backlog (
thumbnail_url TEXT NOT NULL,
filename TEXT NOT NULL,
thumbnail_filename TEXT NOT NULL,
page INTEGER NOT NULL,
file_sha256 TEXT NOT NULL,
thumbnail_sha256 TEXT NOT NULL,
UNIQUE(board, no)
);
);
CREATE INDEX page_index ON posts (page);

0 comments on commit e8a7a4d

Please sign in to comment.