@c4t4/heyamigo 0.9.14 → 0.9.16

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.
@@ -0,0 +1,909 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "4858c530-a743-4923-8a2a-eccbfa960447",
5
+ "prevId": "60d80ac8-f2b9-4d71-b860-14e2609c4d47",
6
+ "tables": {
7
+ "browser_tasks": {
8
+ "name": "browser_tasks",
9
+ "columns": {
10
+ "id": {
11
+ "name": "id",
12
+ "type": "integer",
13
+ "primaryKey": true,
14
+ "notNull": true,
15
+ "autoincrement": true
16
+ },
17
+ "address": {
18
+ "name": "address",
19
+ "type": "text",
20
+ "primaryKey": false,
21
+ "notNull": true,
22
+ "autoincrement": false
23
+ },
24
+ "actor_person_id": {
25
+ "name": "actor_person_id",
26
+ "type": "text",
27
+ "primaryKey": false,
28
+ "notNull": false,
29
+ "autoincrement": false
30
+ },
31
+ "description": {
32
+ "name": "description",
33
+ "type": "text",
34
+ "primaryKey": false,
35
+ "notNull": true,
36
+ "autoincrement": false
37
+ },
38
+ "originating_message": {
39
+ "name": "originating_message",
40
+ "type": "text",
41
+ "primaryKey": false,
42
+ "notNull": true,
43
+ "autoincrement": false
44
+ },
45
+ "sender_number": {
46
+ "name": "sender_number",
47
+ "type": "text",
48
+ "primaryKey": false,
49
+ "notNull": true,
50
+ "autoincrement": false
51
+ },
52
+ "sender_name": {
53
+ "name": "sender_name",
54
+ "type": "text",
55
+ "primaryKey": false,
56
+ "notNull": false,
57
+ "autoincrement": false
58
+ },
59
+ "allowed_tools": {
60
+ "name": "allowed_tools",
61
+ "type": "text",
62
+ "primaryKey": false,
63
+ "notNull": false,
64
+ "autoincrement": false
65
+ },
66
+ "status": {
67
+ "name": "status",
68
+ "type": "text",
69
+ "primaryKey": false,
70
+ "notNull": true,
71
+ "autoincrement": false
72
+ },
73
+ "attempts": {
74
+ "name": "attempts",
75
+ "type": "integer",
76
+ "primaryKey": false,
77
+ "notNull": true,
78
+ "autoincrement": false,
79
+ "default": 0
80
+ },
81
+ "next_attempt_at": {
82
+ "name": "next_attempt_at",
83
+ "type": "integer",
84
+ "primaryKey": false,
85
+ "notNull": false,
86
+ "autoincrement": false
87
+ },
88
+ "last_error": {
89
+ "name": "last_error",
90
+ "type": "text",
91
+ "primaryKey": false,
92
+ "notNull": false,
93
+ "autoincrement": false
94
+ },
95
+ "claimed_by": {
96
+ "name": "claimed_by",
97
+ "type": "text",
98
+ "primaryKey": false,
99
+ "notNull": false,
100
+ "autoincrement": false
101
+ },
102
+ "claimed_at": {
103
+ "name": "claimed_at",
104
+ "type": "integer",
105
+ "primaryKey": false,
106
+ "notNull": false,
107
+ "autoincrement": false
108
+ },
109
+ "created_at": {
110
+ "name": "created_at",
111
+ "type": "integer",
112
+ "primaryKey": false,
113
+ "notNull": true,
114
+ "autoincrement": false
115
+ },
116
+ "updated_at": {
117
+ "name": "updated_at",
118
+ "type": "integer",
119
+ "primaryKey": false,
120
+ "notNull": true,
121
+ "autoincrement": false
122
+ }
123
+ },
124
+ "indexes": {
125
+ "btasks_by_status_next": {
126
+ "name": "btasks_by_status_next",
127
+ "columns": [
128
+ "status",
129
+ "next_attempt_at"
130
+ ],
131
+ "isUnique": false
132
+ }
133
+ },
134
+ "foreignKeys": {},
135
+ "compositePrimaryKeys": {},
136
+ "uniqueConstraints": {},
137
+ "checkConstraints": {}
138
+ },
139
+ "control": {
140
+ "name": "control",
141
+ "columns": {
142
+ "key": {
143
+ "name": "key",
144
+ "type": "text",
145
+ "primaryKey": true,
146
+ "notNull": true,
147
+ "autoincrement": false
148
+ },
149
+ "value": {
150
+ "name": "value",
151
+ "type": "text",
152
+ "primaryKey": false,
153
+ "notNull": false,
154
+ "autoincrement": false
155
+ },
156
+ "requested_by": {
157
+ "name": "requested_by",
158
+ "type": "text",
159
+ "primaryKey": false,
160
+ "notNull": false,
161
+ "autoincrement": false
162
+ },
163
+ "requested_at": {
164
+ "name": "requested_at",
165
+ "type": "integer",
166
+ "primaryKey": false,
167
+ "notNull": true,
168
+ "autoincrement": false
169
+ }
170
+ },
171
+ "indexes": {},
172
+ "foreignKeys": {},
173
+ "compositePrimaryKeys": {},
174
+ "uniqueConstraints": {},
175
+ "checkConstraints": {}
176
+ },
177
+ "crons": {
178
+ "name": "crons",
179
+ "columns": {
180
+ "id": {
181
+ "name": "id",
182
+ "type": "integer",
183
+ "primaryKey": true,
184
+ "notNull": true,
185
+ "autoincrement": true
186
+ },
187
+ "name": {
188
+ "name": "name",
189
+ "type": "text",
190
+ "primaryKey": false,
191
+ "notNull": true,
192
+ "autoincrement": false
193
+ },
194
+ "enqueue_into": {
195
+ "name": "enqueue_into",
196
+ "type": "text",
197
+ "primaryKey": false,
198
+ "notNull": true,
199
+ "autoincrement": false
200
+ },
201
+ "payload": {
202
+ "name": "payload",
203
+ "type": "text",
204
+ "primaryKey": false,
205
+ "notNull": true,
206
+ "autoincrement": false
207
+ },
208
+ "recurrence": {
209
+ "name": "recurrence",
210
+ "type": "text",
211
+ "primaryKey": false,
212
+ "notNull": false,
213
+ "autoincrement": false
214
+ },
215
+ "next_run_at": {
216
+ "name": "next_run_at",
217
+ "type": "integer",
218
+ "primaryKey": false,
219
+ "notNull": true,
220
+ "autoincrement": false
221
+ },
222
+ "last_run_at": {
223
+ "name": "last_run_at",
224
+ "type": "integer",
225
+ "primaryKey": false,
226
+ "notNull": false,
227
+ "autoincrement": false
228
+ },
229
+ "enabled": {
230
+ "name": "enabled",
231
+ "type": "integer",
232
+ "primaryKey": false,
233
+ "notNull": true,
234
+ "autoincrement": false,
235
+ "default": 1
236
+ },
237
+ "created_at": {
238
+ "name": "created_at",
239
+ "type": "integer",
240
+ "primaryKey": false,
241
+ "notNull": true,
242
+ "autoincrement": false
243
+ }
244
+ },
245
+ "indexes": {
246
+ "crons_by_due": {
247
+ "name": "crons_by_due",
248
+ "columns": [
249
+ "enabled",
250
+ "next_run_at"
251
+ ],
252
+ "isUnique": false
253
+ },
254
+ "crons_name_uq": {
255
+ "name": "crons_name_uq",
256
+ "columns": [
257
+ "name"
258
+ ],
259
+ "isUnique": true,
260
+ "where": "\"crons\".\"recurrence\" IS NOT NULL"
261
+ }
262
+ },
263
+ "foreignKeys": {},
264
+ "compositePrimaryKeys": {},
265
+ "uniqueConstraints": {},
266
+ "checkConstraints": {}
267
+ },
268
+ "identities": {
269
+ "name": "identities",
270
+ "columns": {
271
+ "person_id": {
272
+ "name": "person_id",
273
+ "type": "text",
274
+ "primaryKey": false,
275
+ "notNull": true,
276
+ "autoincrement": false
277
+ },
278
+ "address": {
279
+ "name": "address",
280
+ "type": "text",
281
+ "primaryKey": false,
282
+ "notNull": true,
283
+ "autoincrement": false
284
+ },
285
+ "added_at": {
286
+ "name": "added_at",
287
+ "type": "integer",
288
+ "primaryKey": false,
289
+ "notNull": true,
290
+ "autoincrement": false
291
+ }
292
+ },
293
+ "indexes": {
294
+ "identities_address_unique": {
295
+ "name": "identities_address_unique",
296
+ "columns": [
297
+ "address"
298
+ ],
299
+ "isUnique": true
300
+ }
301
+ },
302
+ "foreignKeys": {
303
+ "identities_person_id_persons_id_fk": {
304
+ "name": "identities_person_id_persons_id_fk",
305
+ "tableFrom": "identities",
306
+ "tableTo": "persons",
307
+ "columnsFrom": [
308
+ "person_id"
309
+ ],
310
+ "columnsTo": [
311
+ "id"
312
+ ],
313
+ "onDelete": "no action",
314
+ "onUpdate": "no action"
315
+ }
316
+ },
317
+ "compositePrimaryKeys": {
318
+ "identities_person_id_address_pk": {
319
+ "columns": [
320
+ "person_id",
321
+ "address"
322
+ ],
323
+ "name": "identities_person_id_address_pk"
324
+ }
325
+ },
326
+ "uniqueConstraints": {},
327
+ "checkConstraints": {}
328
+ },
329
+ "inbound": {
330
+ "name": "inbound",
331
+ "columns": {
332
+ "id": {
333
+ "name": "id",
334
+ "type": "integer",
335
+ "primaryKey": true,
336
+ "notNull": true,
337
+ "autoincrement": true
338
+ },
339
+ "address": {
340
+ "name": "address",
341
+ "type": "text",
342
+ "primaryKey": false,
343
+ "notNull": true,
344
+ "autoincrement": false
345
+ },
346
+ "actor_address": {
347
+ "name": "actor_address",
348
+ "type": "text",
349
+ "primaryKey": false,
350
+ "notNull": false,
351
+ "autoincrement": false
352
+ },
353
+ "person_id": {
354
+ "name": "person_id",
355
+ "type": "text",
356
+ "primaryKey": false,
357
+ "notNull": false,
358
+ "autoincrement": false
359
+ },
360
+ "actor_person_id": {
361
+ "name": "actor_person_id",
362
+ "type": "text",
363
+ "primaryKey": false,
364
+ "notNull": false,
365
+ "autoincrement": false
366
+ },
367
+ "external_msg_id": {
368
+ "name": "external_msg_id",
369
+ "type": "text",
370
+ "primaryKey": false,
371
+ "notNull": false,
372
+ "autoincrement": false
373
+ },
374
+ "text": {
375
+ "name": "text",
376
+ "type": "text",
377
+ "primaryKey": false,
378
+ "notNull": true,
379
+ "autoincrement": false
380
+ },
381
+ "media_path": {
382
+ "name": "media_path",
383
+ "type": "text",
384
+ "primaryKey": false,
385
+ "notNull": false,
386
+ "autoincrement": false
387
+ },
388
+ "media_mime": {
389
+ "name": "media_mime",
390
+ "type": "text",
391
+ "primaryKey": false,
392
+ "notNull": false,
393
+ "autoincrement": false
394
+ },
395
+ "media_bytes": {
396
+ "name": "media_bytes",
397
+ "type": "integer",
398
+ "primaryKey": false,
399
+ "notNull": false,
400
+ "autoincrement": false
401
+ },
402
+ "push_name": {
403
+ "name": "push_name",
404
+ "type": "text",
405
+ "primaryKey": false,
406
+ "notNull": false,
407
+ "autoincrement": false
408
+ },
409
+ "trigger_reason": {
410
+ "name": "trigger_reason",
411
+ "type": "text",
412
+ "primaryKey": false,
413
+ "notNull": false,
414
+ "autoincrement": false
415
+ },
416
+ "payload": {
417
+ "name": "payload",
418
+ "type": "text",
419
+ "primaryKey": false,
420
+ "notNull": false,
421
+ "autoincrement": false
422
+ },
423
+ "status": {
424
+ "name": "status",
425
+ "type": "text",
426
+ "primaryKey": false,
427
+ "notNull": true,
428
+ "autoincrement": false
429
+ },
430
+ "attempts": {
431
+ "name": "attempts",
432
+ "type": "integer",
433
+ "primaryKey": false,
434
+ "notNull": true,
435
+ "autoincrement": false,
436
+ "default": 0
437
+ },
438
+ "next_attempt_at": {
439
+ "name": "next_attempt_at",
440
+ "type": "integer",
441
+ "primaryKey": false,
442
+ "notNull": false,
443
+ "autoincrement": false
444
+ },
445
+ "last_error": {
446
+ "name": "last_error",
447
+ "type": "text",
448
+ "primaryKey": false,
449
+ "notNull": false,
450
+ "autoincrement": false
451
+ },
452
+ "claimed_by": {
453
+ "name": "claimed_by",
454
+ "type": "text",
455
+ "primaryKey": false,
456
+ "notNull": false,
457
+ "autoincrement": false
458
+ },
459
+ "claimed_at": {
460
+ "name": "claimed_at",
461
+ "type": "integer",
462
+ "primaryKey": false,
463
+ "notNull": false,
464
+ "autoincrement": false
465
+ },
466
+ "received_at": {
467
+ "name": "received_at",
468
+ "type": "integer",
469
+ "primaryKey": false,
470
+ "notNull": true,
471
+ "autoincrement": false
472
+ },
473
+ "created_at": {
474
+ "name": "created_at",
475
+ "type": "integer",
476
+ "primaryKey": false,
477
+ "notNull": true,
478
+ "autoincrement": false
479
+ },
480
+ "updated_at": {
481
+ "name": "updated_at",
482
+ "type": "integer",
483
+ "primaryKey": false,
484
+ "notNull": true,
485
+ "autoincrement": false
486
+ }
487
+ },
488
+ "indexes": {
489
+ "inbound_by_status_next": {
490
+ "name": "inbound_by_status_next",
491
+ "columns": [
492
+ "status",
493
+ "next_attempt_at"
494
+ ],
495
+ "isUnique": false
496
+ },
497
+ "inbound_by_address": {
498
+ "name": "inbound_by_address",
499
+ "columns": [
500
+ "address"
501
+ ],
502
+ "isUnique": false
503
+ },
504
+ "inbound_by_person": {
505
+ "name": "inbound_by_person",
506
+ "columns": [
507
+ "person_id",
508
+ "received_at"
509
+ ],
510
+ "isUnique": false
511
+ },
512
+ "inbound_external_msg_id_uq": {
513
+ "name": "inbound_external_msg_id_uq",
514
+ "columns": [
515
+ "external_msg_id"
516
+ ],
517
+ "isUnique": true,
518
+ "where": "\"inbound\".\"external_msg_id\" IS NOT NULL"
519
+ }
520
+ },
521
+ "foreignKeys": {},
522
+ "compositePrimaryKeys": {},
523
+ "uniqueConstraints": {},
524
+ "checkConstraints": {}
525
+ },
526
+ "memory_writes": {
527
+ "name": "memory_writes",
528
+ "columns": {
529
+ "id": {
530
+ "name": "id",
531
+ "type": "integer",
532
+ "primaryKey": true,
533
+ "notNull": true,
534
+ "autoincrement": true
535
+ },
536
+ "op": {
537
+ "name": "op",
538
+ "type": "text",
539
+ "primaryKey": false,
540
+ "notNull": true,
541
+ "autoincrement": false
542
+ },
543
+ "payload": {
544
+ "name": "payload",
545
+ "type": "text",
546
+ "primaryKey": false,
547
+ "notNull": true,
548
+ "autoincrement": false
549
+ },
550
+ "idempotency_key": {
551
+ "name": "idempotency_key",
552
+ "type": "text",
553
+ "primaryKey": false,
554
+ "notNull": false,
555
+ "autoincrement": false
556
+ },
557
+ "status": {
558
+ "name": "status",
559
+ "type": "text",
560
+ "primaryKey": false,
561
+ "notNull": true,
562
+ "autoincrement": false
563
+ },
564
+ "attempts": {
565
+ "name": "attempts",
566
+ "type": "integer",
567
+ "primaryKey": false,
568
+ "notNull": true,
569
+ "autoincrement": false,
570
+ "default": 0
571
+ },
572
+ "next_attempt_at": {
573
+ "name": "next_attempt_at",
574
+ "type": "integer",
575
+ "primaryKey": false,
576
+ "notNull": false,
577
+ "autoincrement": false
578
+ },
579
+ "last_error": {
580
+ "name": "last_error",
581
+ "type": "text",
582
+ "primaryKey": false,
583
+ "notNull": false,
584
+ "autoincrement": false
585
+ },
586
+ "claimed_by": {
587
+ "name": "claimed_by",
588
+ "type": "text",
589
+ "primaryKey": false,
590
+ "notNull": false,
591
+ "autoincrement": false
592
+ },
593
+ "claimed_at": {
594
+ "name": "claimed_at",
595
+ "type": "integer",
596
+ "primaryKey": false,
597
+ "notNull": false,
598
+ "autoincrement": false
599
+ },
600
+ "created_at": {
601
+ "name": "created_at",
602
+ "type": "integer",
603
+ "primaryKey": false,
604
+ "notNull": true,
605
+ "autoincrement": false
606
+ },
607
+ "updated_at": {
608
+ "name": "updated_at",
609
+ "type": "integer",
610
+ "primaryKey": false,
611
+ "notNull": true,
612
+ "autoincrement": false
613
+ }
614
+ },
615
+ "indexes": {
616
+ "memwr_by_status_next": {
617
+ "name": "memwr_by_status_next",
618
+ "columns": [
619
+ "status",
620
+ "next_attempt_at"
621
+ ],
622
+ "isUnique": false
623
+ },
624
+ "memwr_idemp_uq": {
625
+ "name": "memwr_idemp_uq",
626
+ "columns": [
627
+ "idempotency_key"
628
+ ],
629
+ "isUnique": true,
630
+ "where": "\"memory_writes\".\"idempotency_key\" IS NOT NULL"
631
+ }
632
+ },
633
+ "foreignKeys": {},
634
+ "compositePrimaryKeys": {},
635
+ "uniqueConstraints": {},
636
+ "checkConstraints": {}
637
+ },
638
+ "outbound": {
639
+ "name": "outbound",
640
+ "columns": {
641
+ "id": {
642
+ "name": "id",
643
+ "type": "integer",
644
+ "primaryKey": true,
645
+ "notNull": true,
646
+ "autoincrement": true
647
+ },
648
+ "address": {
649
+ "name": "address",
650
+ "type": "text",
651
+ "primaryKey": false,
652
+ "notNull": true,
653
+ "autoincrement": false
654
+ },
655
+ "kind": {
656
+ "name": "kind",
657
+ "type": "text",
658
+ "primaryKey": false,
659
+ "notNull": true,
660
+ "autoincrement": false
661
+ },
662
+ "text": {
663
+ "name": "text",
664
+ "type": "text",
665
+ "primaryKey": false,
666
+ "notNull": false,
667
+ "autoincrement": false
668
+ },
669
+ "media_path": {
670
+ "name": "media_path",
671
+ "type": "text",
672
+ "primaryKey": false,
673
+ "notNull": false,
674
+ "autoincrement": false
675
+ },
676
+ "media_mime": {
677
+ "name": "media_mime",
678
+ "type": "text",
679
+ "primaryKey": false,
680
+ "notNull": false,
681
+ "autoincrement": false
682
+ },
683
+ "media_bytes": {
684
+ "name": "media_bytes",
685
+ "type": "integer",
686
+ "primaryKey": false,
687
+ "notNull": false,
688
+ "autoincrement": false
689
+ },
690
+ "quote_msg_id": {
691
+ "name": "quote_msg_id",
692
+ "type": "text",
693
+ "primaryKey": false,
694
+ "notNull": false,
695
+ "autoincrement": false
696
+ },
697
+ "idempotency_key": {
698
+ "name": "idempotency_key",
699
+ "type": "text",
700
+ "primaryKey": false,
701
+ "notNull": false,
702
+ "autoincrement": false
703
+ },
704
+ "status": {
705
+ "name": "status",
706
+ "type": "text",
707
+ "primaryKey": false,
708
+ "notNull": true,
709
+ "autoincrement": false
710
+ },
711
+ "attempts": {
712
+ "name": "attempts",
713
+ "type": "integer",
714
+ "primaryKey": false,
715
+ "notNull": true,
716
+ "autoincrement": false,
717
+ "default": 0
718
+ },
719
+ "next_attempt_at": {
720
+ "name": "next_attempt_at",
721
+ "type": "integer",
722
+ "primaryKey": false,
723
+ "notNull": false,
724
+ "autoincrement": false
725
+ },
726
+ "last_error": {
727
+ "name": "last_error",
728
+ "type": "text",
729
+ "primaryKey": false,
730
+ "notNull": false,
731
+ "autoincrement": false
732
+ },
733
+ "claimed_by": {
734
+ "name": "claimed_by",
735
+ "type": "text",
736
+ "primaryKey": false,
737
+ "notNull": false,
738
+ "autoincrement": false
739
+ },
740
+ "claimed_at": {
741
+ "name": "claimed_at",
742
+ "type": "integer",
743
+ "primaryKey": false,
744
+ "notNull": false,
745
+ "autoincrement": false
746
+ },
747
+ "created_at": {
748
+ "name": "created_at",
749
+ "type": "integer",
750
+ "primaryKey": false,
751
+ "notNull": true,
752
+ "autoincrement": false
753
+ },
754
+ "updated_at": {
755
+ "name": "updated_at",
756
+ "type": "integer",
757
+ "primaryKey": false,
758
+ "notNull": true,
759
+ "autoincrement": false
760
+ }
761
+ },
762
+ "indexes": {
763
+ "outbound_by_status_next": {
764
+ "name": "outbound_by_status_next",
765
+ "columns": [
766
+ "status",
767
+ "next_attempt_at"
768
+ ],
769
+ "isUnique": false
770
+ },
771
+ "outbound_by_address": {
772
+ "name": "outbound_by_address",
773
+ "columns": [
774
+ "address"
775
+ ],
776
+ "isUnique": false
777
+ },
778
+ "outbound_idempotency_key_uq": {
779
+ "name": "outbound_idempotency_key_uq",
780
+ "columns": [
781
+ "idempotency_key"
782
+ ],
783
+ "isUnique": true,
784
+ "where": "\"outbound\".\"idempotency_key\" IS NOT NULL"
785
+ }
786
+ },
787
+ "foreignKeys": {},
788
+ "compositePrimaryKeys": {},
789
+ "uniqueConstraints": {},
790
+ "checkConstraints": {}
791
+ },
792
+ "persons": {
793
+ "name": "persons",
794
+ "columns": {
795
+ "id": {
796
+ "name": "id",
797
+ "type": "text",
798
+ "primaryKey": true,
799
+ "notNull": true,
800
+ "autoincrement": false
801
+ },
802
+ "display_name": {
803
+ "name": "display_name",
804
+ "type": "text",
805
+ "primaryKey": false,
806
+ "notNull": false,
807
+ "autoincrement": false
808
+ },
809
+ "timezone": {
810
+ "name": "timezone",
811
+ "type": "text",
812
+ "primaryKey": false,
813
+ "notNull": false,
814
+ "autoincrement": false
815
+ },
816
+ "created_at": {
817
+ "name": "created_at",
818
+ "type": "integer",
819
+ "primaryKey": false,
820
+ "notNull": true,
821
+ "autoincrement": false
822
+ }
823
+ },
824
+ "indexes": {},
825
+ "foreignKeys": {},
826
+ "compositePrimaryKeys": {},
827
+ "uniqueConstraints": {},
828
+ "checkConstraints": {}
829
+ },
830
+ "workers": {
831
+ "name": "workers",
832
+ "columns": {
833
+ "id": {
834
+ "name": "id",
835
+ "type": "text",
836
+ "primaryKey": true,
837
+ "notNull": true,
838
+ "autoincrement": false
839
+ },
840
+ "kind": {
841
+ "name": "kind",
842
+ "type": "text",
843
+ "primaryKey": false,
844
+ "notNull": true,
845
+ "autoincrement": false
846
+ },
847
+ "status": {
848
+ "name": "status",
849
+ "type": "text",
850
+ "primaryKey": false,
851
+ "notNull": true,
852
+ "autoincrement": false
853
+ },
854
+ "current_job": {
855
+ "name": "current_job",
856
+ "type": "text",
857
+ "primaryKey": false,
858
+ "notNull": false,
859
+ "autoincrement": false
860
+ },
861
+ "last_seen": {
862
+ "name": "last_seen",
863
+ "type": "integer",
864
+ "primaryKey": false,
865
+ "notNull": true,
866
+ "autoincrement": false
867
+ },
868
+ "started_at": {
869
+ "name": "started_at",
870
+ "type": "integer",
871
+ "primaryKey": false,
872
+ "notNull": true,
873
+ "autoincrement": false
874
+ }
875
+ },
876
+ "indexes": {
877
+ "workers_by_kind_status": {
878
+ "name": "workers_by_kind_status",
879
+ "columns": [
880
+ "kind",
881
+ "status"
882
+ ],
883
+ "isUnique": false
884
+ },
885
+ "workers_by_last_seen": {
886
+ "name": "workers_by_last_seen",
887
+ "columns": [
888
+ "last_seen"
889
+ ],
890
+ "isUnique": false
891
+ }
892
+ },
893
+ "foreignKeys": {},
894
+ "compositePrimaryKeys": {},
895
+ "uniqueConstraints": {},
896
+ "checkConstraints": {}
897
+ }
898
+ },
899
+ "views": {},
900
+ "enums": {},
901
+ "_meta": {
902
+ "schemas": {},
903
+ "tables": {},
904
+ "columns": {}
905
+ },
906
+ "internal": {
907
+ "indexes": {}
908
+ }
909
+ }