@tstdl/base 0.92.100 → 0.92.102

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,6 +8,13 @@
8
8
  "when": 1741038401158,
9
9
  "tag": "0000_cool_victor_mancha",
10
10
  "breakpoints": true
11
+ },
12
+ {
13
+ "idx": 1,
14
+ "version": "7",
15
+ "when": 1741944761924,
16
+ "tag": "0001_concerned_quentin_quire",
17
+ "breakpoints": true
11
18
  }
12
19
  ]
13
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tstdl/base",
3
- "version": "0.92.100",
3
+ "version": "0.92.102",
4
4
  "author": "Patrick Hein",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -0,0 +1,2 @@
1
+ ALTER TABLE "queue"."job" DROP CONSTRAINT "job_queue_tag_unique";--> statement-breakpoint
2
+ CREATE INDEX "job_queue_tag_idx" ON "queue"."job" USING btree ("queue","tag");
@@ -0,0 +1,103 @@
1
+ {
2
+ "id": "ecc50ddb-e593-48ae-abe8-ec5d1b8d5970",
3
+ "prevId": "1a2e63a5-b780-4f4d-ae41-ce8369aa1cf0",
4
+ "version": "7",
5
+ "dialect": "postgresql",
6
+ "tables": {
7
+ "queue.job": {
8
+ "name": "job",
9
+ "schema": "queue",
10
+ "columns": {
11
+ "id": {
12
+ "name": "id",
13
+ "type": "uuid",
14
+ "primaryKey": true,
15
+ "notNull": true,
16
+ "default": "gen_random_uuid()"
17
+ },
18
+ "queue": {
19
+ "name": "queue",
20
+ "type": "text",
21
+ "primaryKey": false,
22
+ "notNull": true
23
+ },
24
+ "tag": {
25
+ "name": "tag",
26
+ "type": "text",
27
+ "primaryKey": false,
28
+ "notNull": false
29
+ },
30
+ "priority": {
31
+ "name": "priority",
32
+ "type": "integer",
33
+ "primaryKey": false,
34
+ "notNull": true
35
+ },
36
+ "enqueue_timestamp": {
37
+ "name": "enqueue_timestamp",
38
+ "type": "timestamp with time zone",
39
+ "primaryKey": false,
40
+ "notNull": true
41
+ },
42
+ "tries": {
43
+ "name": "tries",
44
+ "type": "integer",
45
+ "primaryKey": false,
46
+ "notNull": true
47
+ },
48
+ "last_dequeue_timestamp": {
49
+ "name": "last_dequeue_timestamp",
50
+ "type": "timestamp with time zone",
51
+ "primaryKey": false,
52
+ "notNull": false
53
+ },
54
+ "data": {
55
+ "name": "data",
56
+ "type": "jsonb",
57
+ "primaryKey": false,
58
+ "notNull": true
59
+ }
60
+ },
61
+ "indexes": {
62
+ "job_queue_tag_idx": {
63
+ "name": "job_queue_tag_idx",
64
+ "columns": [
65
+ {
66
+ "expression": "queue",
67
+ "isExpression": false,
68
+ "asc": true,
69
+ "nulls": "last"
70
+ },
71
+ {
72
+ "expression": "tag",
73
+ "isExpression": false,
74
+ "asc": true,
75
+ "nulls": "last"
76
+ }
77
+ ],
78
+ "isUnique": false,
79
+ "concurrently": false,
80
+ "method": "btree",
81
+ "with": {}
82
+ }
83
+ },
84
+ "foreignKeys": {},
85
+ "compositePrimaryKeys": {},
86
+ "uniqueConstraints": {},
87
+ "policies": {},
88
+ "checkConstraints": {},
89
+ "isRLSEnabled": false
90
+ }
91
+ },
92
+ "enums": {},
93
+ "schemas": {},
94
+ "sequences": {},
95
+ "roles": {},
96
+ "policies": {},
97
+ "views": {},
98
+ "_meta": {
99
+ "columns": {},
100
+ "schemas": {},
101
+ "tables": {}
102
+ }
103
+ }
@@ -8,6 +8,13 @@
8
8
  "when": 1740684120614,
9
9
  "tag": "0000_zippy_moondragon",
10
10
  "breakpoints": true
11
+ },
12
+ {
13
+ "idx": 1,
14
+ "version": "7",
15
+ "when": 1741944766334,
16
+ "tag": "0001_certain_wild_pack",
17
+ "breakpoints": true
11
18
  }
12
19
  ]
13
20
  }