vibora 6.2.4 → 6.3.0

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