From a746e9a38e53e4a9114d786c7fb1b3ef4ca67870 Mon Sep 17 00:00:00 2001 From: Mohamed Bassem Date: Sun, 27 Oct 2024 23:37:54 +0000 Subject: deps: Extract the queue implementation into its own repos --- packages/queue/drizzle/meta/0000_snapshot.json | 130 ------------------------- packages/queue/drizzle/meta/_journal.json | 13 --- 2 files changed, 143 deletions(-) delete mode 100644 packages/queue/drizzle/meta/0000_snapshot.json delete mode 100644 packages/queue/drizzle/meta/_journal.json (limited to 'packages/queue/drizzle/meta') diff --git a/packages/queue/drizzle/meta/0000_snapshot.json b/packages/queue/drizzle/meta/0000_snapshot.json deleted file mode 100644 index 57c7c2f4..00000000 --- a/packages/queue/drizzle/meta/0000_snapshot.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "version": "5", - "dialect": "sqlite", - "id": "3094773c-0138-46b2-b617-4b10093b0f53", - "prevId": "00000000-0000-0000-0000-000000000000", - "tables": { - "tasks": { - "name": "tasks", - "columns": { - "id": { - "name": "id", - "type": "integer", - "primaryKey": true, - "notNull": true, - "autoincrement": true - }, - "queue": { - "name": "queue", - "type": "text", - "primaryKey": false, - "notNull": true, - "autoincrement": false - }, - "payload": { - "name": "payload", - "type": "text", - "primaryKey": false, - "notNull": true, - "autoincrement": false - }, - "createdAt": { - "name": "createdAt", - "type": "integer", - "primaryKey": false, - "notNull": true, - "autoincrement": false - }, - "status": { - "name": "status", - "type": "text", - "primaryKey": false, - "notNull": true, - "autoincrement": false, - "default": "'pending'" - }, - "expireAt": { - "name": "expireAt", - "type": "integer", - "primaryKey": false, - "notNull": false, - "autoincrement": false - }, - "allocationId": { - "name": "allocationId", - "type": "text", - "primaryKey": false, - "notNull": true, - "autoincrement": false - }, - "numRunsLeft": { - "name": "numRunsLeft", - "type": "integer", - "primaryKey": false, - "notNull": true, - "autoincrement": false - }, - "maxNumRuns": { - "name": "maxNumRuns", - "type": "integer", - "primaryKey": false, - "notNull": true, - "autoincrement": false - } - }, - "indexes": { - "tasks_queue_idx": { - "name": "tasks_queue_idx", - "columns": [ - "queue" - ], - "isUnique": false - }, - "tasks_status_idx": { - "name": "tasks_status_idx", - "columns": [ - "status" - ], - "isUnique": false - }, - "tasks_expire_at_idx": { - "name": "tasks_expire_at_idx", - "columns": [ - "expireAt" - ], - "isUnique": false - }, - "tasks_num_runs_left_idx": { - "name": "tasks_num_runs_left_idx", - "columns": [ - "numRunsLeft" - ], - "isUnique": false - }, - "tasks_max_num_runs_idx": { - "name": "tasks_max_num_runs_idx", - "columns": [ - "maxNumRuns" - ], - "isUnique": false - }, - "tasks_allocation_id_idx": { - "name": "tasks_allocation_id_idx", - "columns": [ - "allocationId" - ], - "isUnique": false - } - }, - "foreignKeys": {}, - "compositePrimaryKeys": {}, - "uniqueConstraints": {} - } - }, - "enums": {}, - "_meta": { - "schemas": {}, - "tables": {}, - "columns": {} - } -} \ No newline at end of file diff --git a/packages/queue/drizzle/meta/_journal.json b/packages/queue/drizzle/meta/_journal.json deleted file mode 100644 index 2b14f895..00000000 --- a/packages/queue/drizzle/meta/_journal.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "version": "5", - "dialect": "sqlite", - "entries": [ - { - "idx": 0, - "version": "5", - "when": 1720992922192, - "tag": "0000_wonderful_talisman", - "breakpoints": true - } - ] -} \ No newline at end of file -- cgit v1.2.3-70-g09d2