Skip to content

Commit b2bacbd

Browse files
committed
feat: add nullable timeout column to sidequest_jobs table
1 parent bfeb4b6 commit b2bacbd

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

packages/backends/sqlite/migrations/1_create_queues_and_jobs.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ exports.up = function(knex) {
1919
table.string('claimed_by');
2020
table.integer('attempt');
2121
table.integer('max_attempts');
22+
table.integer('timeout').nullable();
2223
})
2324
.createTable('sidequest_queues', function (table) {
2425
table.increments('id').primary();

0 commit comments

Comments
 (0)