Skip to content

Commit b53e7cd

Browse files
committed
Create submissions_cancelled table
1 parent 7371353 commit b53e7cd

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
CREATE TABLE submissions_cancelled
2+
(
3+
id BIGINT PRIMARY KEY NOT NULL,
4+
prefix TEXT,
5+
chunks_total INTEGER NOT NULL DEFAULT 0,
6+
chunks_done INTEGER NOT NULL DEFAULT 0,
7+
metadata BLOB,
8+
cancelled_at DATETIME NOT NULL -- Unix Timestamp
9+
);
10+
8 KB
Binary file not shown.

0 commit comments

Comments
 (0)