vibora 8.7.2 → 9.0.1

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,1063 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "a119f089-fab5-47b8-89ef-a834abee45bc",
5
+ "prevId": "926c8ad6-ab10-4ee1-9310-b7d92db0aeaf",
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
+ "auto_port_allocation": {
153
+ "name": "auto_port_allocation",
154
+ "type": "integer",
155
+ "primaryKey": false,
156
+ "notNull": false,
157
+ "autoincrement": false,
158
+ "default": true
159
+ },
160
+ "environment_variables": {
161
+ "name": "environment_variables",
162
+ "type": "text",
163
+ "primaryKey": false,
164
+ "notNull": false,
165
+ "autoincrement": false
166
+ },
167
+ "no_cache_build": {
168
+ "name": "no_cache_build",
169
+ "type": "integer",
170
+ "primaryKey": false,
171
+ "notNull": false,
172
+ "autoincrement": false,
173
+ "default": false
174
+ },
175
+ "notifications_enabled": {
176
+ "name": "notifications_enabled",
177
+ "type": "integer",
178
+ "primaryKey": false,
179
+ "notNull": false,
180
+ "autoincrement": false,
181
+ "default": true
182
+ },
183
+ "last_deployed_at": {
184
+ "name": "last_deployed_at",
185
+ "type": "text",
186
+ "primaryKey": false,
187
+ "notNull": false,
188
+ "autoincrement": false
189
+ },
190
+ "last_deploy_commit": {
191
+ "name": "last_deploy_commit",
192
+ "type": "text",
193
+ "primaryKey": false,
194
+ "notNull": false,
195
+ "autoincrement": false
196
+ },
197
+ "created_at": {
198
+ "name": "created_at",
199
+ "type": "text",
200
+ "primaryKey": false,
201
+ "notNull": true,
202
+ "autoincrement": false
203
+ },
204
+ "updated_at": {
205
+ "name": "updated_at",
206
+ "type": "text",
207
+ "primaryKey": false,
208
+ "notNull": true,
209
+ "autoincrement": false
210
+ }
211
+ },
212
+ "indexes": {},
213
+ "foreignKeys": {},
214
+ "compositePrimaryKeys": {},
215
+ "uniqueConstraints": {},
216
+ "checkConstraints": {}
217
+ },
218
+ "deployments": {
219
+ "name": "deployments",
220
+ "columns": {
221
+ "id": {
222
+ "name": "id",
223
+ "type": "text",
224
+ "primaryKey": true,
225
+ "notNull": true,
226
+ "autoincrement": false
227
+ },
228
+ "app_id": {
229
+ "name": "app_id",
230
+ "type": "text",
231
+ "primaryKey": false,
232
+ "notNull": true,
233
+ "autoincrement": false
234
+ },
235
+ "status": {
236
+ "name": "status",
237
+ "type": "text",
238
+ "primaryKey": false,
239
+ "notNull": true,
240
+ "autoincrement": false
241
+ },
242
+ "git_commit": {
243
+ "name": "git_commit",
244
+ "type": "text",
245
+ "primaryKey": false,
246
+ "notNull": false,
247
+ "autoincrement": false
248
+ },
249
+ "git_message": {
250
+ "name": "git_message",
251
+ "type": "text",
252
+ "primaryKey": false,
253
+ "notNull": false,
254
+ "autoincrement": false
255
+ },
256
+ "deployed_by": {
257
+ "name": "deployed_by",
258
+ "type": "text",
259
+ "primaryKey": false,
260
+ "notNull": false,
261
+ "autoincrement": false
262
+ },
263
+ "build_logs": {
264
+ "name": "build_logs",
265
+ "type": "text",
266
+ "primaryKey": false,
267
+ "notNull": false,
268
+ "autoincrement": false
269
+ },
270
+ "error_message": {
271
+ "name": "error_message",
272
+ "type": "text",
273
+ "primaryKey": false,
274
+ "notNull": false,
275
+ "autoincrement": false
276
+ },
277
+ "started_at": {
278
+ "name": "started_at",
279
+ "type": "text",
280
+ "primaryKey": false,
281
+ "notNull": true,
282
+ "autoincrement": false
283
+ },
284
+ "completed_at": {
285
+ "name": "completed_at",
286
+ "type": "text",
287
+ "primaryKey": false,
288
+ "notNull": false,
289
+ "autoincrement": false
290
+ },
291
+ "created_at": {
292
+ "name": "created_at",
293
+ "type": "text",
294
+ "primaryKey": false,
295
+ "notNull": true,
296
+ "autoincrement": false
297
+ }
298
+ },
299
+ "indexes": {},
300
+ "foreignKeys": {},
301
+ "compositePrimaryKeys": {},
302
+ "uniqueConstraints": {},
303
+ "checkConstraints": {}
304
+ },
305
+ "projects": {
306
+ "name": "projects",
307
+ "columns": {
308
+ "id": {
309
+ "name": "id",
310
+ "type": "text",
311
+ "primaryKey": true,
312
+ "notNull": true,
313
+ "autoincrement": false
314
+ },
315
+ "name": {
316
+ "name": "name",
317
+ "type": "text",
318
+ "primaryKey": false,
319
+ "notNull": true,
320
+ "autoincrement": false
321
+ },
322
+ "description": {
323
+ "name": "description",
324
+ "type": "text",
325
+ "primaryKey": false,
326
+ "notNull": false,
327
+ "autoincrement": false
328
+ },
329
+ "repository_id": {
330
+ "name": "repository_id",
331
+ "type": "text",
332
+ "primaryKey": false,
333
+ "notNull": false,
334
+ "autoincrement": false
335
+ },
336
+ "app_id": {
337
+ "name": "app_id",
338
+ "type": "text",
339
+ "primaryKey": false,
340
+ "notNull": false,
341
+ "autoincrement": false
342
+ },
343
+ "terminal_tab_id": {
344
+ "name": "terminal_tab_id",
345
+ "type": "text",
346
+ "primaryKey": false,
347
+ "notNull": false,
348
+ "autoincrement": false
349
+ },
350
+ "status": {
351
+ "name": "status",
352
+ "type": "text",
353
+ "primaryKey": false,
354
+ "notNull": true,
355
+ "autoincrement": false,
356
+ "default": "'active'"
357
+ },
358
+ "last_accessed_at": {
359
+ "name": "last_accessed_at",
360
+ "type": "text",
361
+ "primaryKey": false,
362
+ "notNull": false,
363
+ "autoincrement": false
364
+ },
365
+ "created_at": {
366
+ "name": "created_at",
367
+ "type": "text",
368
+ "primaryKey": false,
369
+ "notNull": true,
370
+ "autoincrement": false
371
+ },
372
+ "updated_at": {
373
+ "name": "updated_at",
374
+ "type": "text",
375
+ "primaryKey": false,
376
+ "notNull": true,
377
+ "autoincrement": false
378
+ }
379
+ },
380
+ "indexes": {
381
+ "projects_app_id_unique": {
382
+ "name": "projects_app_id_unique",
383
+ "columns": [
384
+ "app_id"
385
+ ],
386
+ "isUnique": true
387
+ },
388
+ "projects_terminal_tab_id_unique": {
389
+ "name": "projects_terminal_tab_id_unique",
390
+ "columns": [
391
+ "terminal_tab_id"
392
+ ],
393
+ "isUnique": true
394
+ }
395
+ },
396
+ "foreignKeys": {},
397
+ "compositePrimaryKeys": {},
398
+ "uniqueConstraints": {},
399
+ "checkConstraints": {}
400
+ },
401
+ "repositories": {
402
+ "name": "repositories",
403
+ "columns": {
404
+ "id": {
405
+ "name": "id",
406
+ "type": "text",
407
+ "primaryKey": true,
408
+ "notNull": true,
409
+ "autoincrement": false
410
+ },
411
+ "path": {
412
+ "name": "path",
413
+ "type": "text",
414
+ "primaryKey": false,
415
+ "notNull": true,
416
+ "autoincrement": false
417
+ },
418
+ "display_name": {
419
+ "name": "display_name",
420
+ "type": "text",
421
+ "primaryKey": false,
422
+ "notNull": true,
423
+ "autoincrement": false
424
+ },
425
+ "startup_script": {
426
+ "name": "startup_script",
427
+ "type": "text",
428
+ "primaryKey": false,
429
+ "notNull": false,
430
+ "autoincrement": false
431
+ },
432
+ "copy_files": {
433
+ "name": "copy_files",
434
+ "type": "text",
435
+ "primaryKey": false,
436
+ "notNull": false,
437
+ "autoincrement": false
438
+ },
439
+ "claude_options": {
440
+ "name": "claude_options",
441
+ "type": "text",
442
+ "primaryKey": false,
443
+ "notNull": false,
444
+ "autoincrement": false
445
+ },
446
+ "opencode_options": {
447
+ "name": "opencode_options",
448
+ "type": "text",
449
+ "primaryKey": false,
450
+ "notNull": false,
451
+ "autoincrement": false
452
+ },
453
+ "opencode_model": {
454
+ "name": "opencode_model",
455
+ "type": "text",
456
+ "primaryKey": false,
457
+ "notNull": false,
458
+ "autoincrement": false
459
+ },
460
+ "default_agent": {
461
+ "name": "default_agent",
462
+ "type": "text",
463
+ "primaryKey": false,
464
+ "notNull": false,
465
+ "autoincrement": false
466
+ },
467
+ "remote_url": {
468
+ "name": "remote_url",
469
+ "type": "text",
470
+ "primaryKey": false,
471
+ "notNull": false,
472
+ "autoincrement": false
473
+ },
474
+ "is_copier_template": {
475
+ "name": "is_copier_template",
476
+ "type": "integer",
477
+ "primaryKey": false,
478
+ "notNull": false,
479
+ "autoincrement": false,
480
+ "default": false
481
+ },
482
+ "last_used_at": {
483
+ "name": "last_used_at",
484
+ "type": "text",
485
+ "primaryKey": false,
486
+ "notNull": false,
487
+ "autoincrement": false
488
+ },
489
+ "created_at": {
490
+ "name": "created_at",
491
+ "type": "text",
492
+ "primaryKey": false,
493
+ "notNull": true,
494
+ "autoincrement": false
495
+ },
496
+ "updated_at": {
497
+ "name": "updated_at",
498
+ "type": "text",
499
+ "primaryKey": false,
500
+ "notNull": true,
501
+ "autoincrement": false
502
+ }
503
+ },
504
+ "indexes": {
505
+ "repositories_path_unique": {
506
+ "name": "repositories_path_unique",
507
+ "columns": [
508
+ "path"
509
+ ],
510
+ "isUnique": true
511
+ }
512
+ },
513
+ "foreignKeys": {},
514
+ "compositePrimaryKeys": {},
515
+ "uniqueConstraints": {},
516
+ "checkConstraints": {}
517
+ },
518
+ "system_metrics": {
519
+ "name": "system_metrics",
520
+ "columns": {
521
+ "id": {
522
+ "name": "id",
523
+ "type": "integer",
524
+ "primaryKey": true,
525
+ "notNull": true,
526
+ "autoincrement": true
527
+ },
528
+ "timestamp": {
529
+ "name": "timestamp",
530
+ "type": "integer",
531
+ "primaryKey": false,
532
+ "notNull": true,
533
+ "autoincrement": false
534
+ },
535
+ "cpu_percent": {
536
+ "name": "cpu_percent",
537
+ "type": "real",
538
+ "primaryKey": false,
539
+ "notNull": true,
540
+ "autoincrement": false
541
+ },
542
+ "memory_used_bytes": {
543
+ "name": "memory_used_bytes",
544
+ "type": "integer",
545
+ "primaryKey": false,
546
+ "notNull": true,
547
+ "autoincrement": false
548
+ },
549
+ "memory_total_bytes": {
550
+ "name": "memory_total_bytes",
551
+ "type": "integer",
552
+ "primaryKey": false,
553
+ "notNull": true,
554
+ "autoincrement": false
555
+ },
556
+ "memory_cache_bytes": {
557
+ "name": "memory_cache_bytes",
558
+ "type": "integer",
559
+ "primaryKey": false,
560
+ "notNull": true,
561
+ "autoincrement": false,
562
+ "default": 0
563
+ },
564
+ "disk_used_bytes": {
565
+ "name": "disk_used_bytes",
566
+ "type": "integer",
567
+ "primaryKey": false,
568
+ "notNull": true,
569
+ "autoincrement": false
570
+ },
571
+ "disk_total_bytes": {
572
+ "name": "disk_total_bytes",
573
+ "type": "integer",
574
+ "primaryKey": false,
575
+ "notNull": true,
576
+ "autoincrement": false
577
+ }
578
+ },
579
+ "indexes": {},
580
+ "foreignKeys": {},
581
+ "compositePrimaryKeys": {},
582
+ "uniqueConstraints": {},
583
+ "checkConstraints": {}
584
+ },
585
+ "tasks": {
586
+ "name": "tasks",
587
+ "columns": {
588
+ "id": {
589
+ "name": "id",
590
+ "type": "text",
591
+ "primaryKey": true,
592
+ "notNull": true,
593
+ "autoincrement": false
594
+ },
595
+ "title": {
596
+ "name": "title",
597
+ "type": "text",
598
+ "primaryKey": false,
599
+ "notNull": true,
600
+ "autoincrement": false
601
+ },
602
+ "description": {
603
+ "name": "description",
604
+ "type": "text",
605
+ "primaryKey": false,
606
+ "notNull": false,
607
+ "autoincrement": false
608
+ },
609
+ "status": {
610
+ "name": "status",
611
+ "type": "text",
612
+ "primaryKey": false,
613
+ "notNull": true,
614
+ "autoincrement": false,
615
+ "default": "'IN_PROGRESS'"
616
+ },
617
+ "position": {
618
+ "name": "position",
619
+ "type": "integer",
620
+ "primaryKey": false,
621
+ "notNull": true,
622
+ "autoincrement": false
623
+ },
624
+ "repo_path": {
625
+ "name": "repo_path",
626
+ "type": "text",
627
+ "primaryKey": false,
628
+ "notNull": true,
629
+ "autoincrement": false
630
+ },
631
+ "repo_name": {
632
+ "name": "repo_name",
633
+ "type": "text",
634
+ "primaryKey": false,
635
+ "notNull": true,
636
+ "autoincrement": false
637
+ },
638
+ "base_branch": {
639
+ "name": "base_branch",
640
+ "type": "text",
641
+ "primaryKey": false,
642
+ "notNull": true,
643
+ "autoincrement": false
644
+ },
645
+ "branch": {
646
+ "name": "branch",
647
+ "type": "text",
648
+ "primaryKey": false,
649
+ "notNull": false,
650
+ "autoincrement": false
651
+ },
652
+ "worktree_path": {
653
+ "name": "worktree_path",
654
+ "type": "text",
655
+ "primaryKey": false,
656
+ "notNull": false,
657
+ "autoincrement": false
658
+ },
659
+ "view_state": {
660
+ "name": "view_state",
661
+ "type": "text",
662
+ "primaryKey": false,
663
+ "notNull": false,
664
+ "autoincrement": false
665
+ },
666
+ "pr_url": {
667
+ "name": "pr_url",
668
+ "type": "text",
669
+ "primaryKey": false,
670
+ "notNull": false,
671
+ "autoincrement": false
672
+ },
673
+ "linear_ticket_id": {
674
+ "name": "linear_ticket_id",
675
+ "type": "text",
676
+ "primaryKey": false,
677
+ "notNull": false,
678
+ "autoincrement": false
679
+ },
680
+ "linear_ticket_url": {
681
+ "name": "linear_ticket_url",
682
+ "type": "text",
683
+ "primaryKey": false,
684
+ "notNull": false,
685
+ "autoincrement": false
686
+ },
687
+ "startup_script": {
688
+ "name": "startup_script",
689
+ "type": "text",
690
+ "primaryKey": false,
691
+ "notNull": false,
692
+ "autoincrement": false
693
+ },
694
+ "agent": {
695
+ "name": "agent",
696
+ "type": "text",
697
+ "primaryKey": false,
698
+ "notNull": true,
699
+ "autoincrement": false,
700
+ "default": "'claude'"
701
+ },
702
+ "ai_mode": {
703
+ "name": "ai_mode",
704
+ "type": "text",
705
+ "primaryKey": false,
706
+ "notNull": false,
707
+ "autoincrement": false
708
+ },
709
+ "agent_options": {
710
+ "name": "agent_options",
711
+ "type": "text",
712
+ "primaryKey": false,
713
+ "notNull": false,
714
+ "autoincrement": false
715
+ },
716
+ "opencode_model": {
717
+ "name": "opencode_model",
718
+ "type": "text",
719
+ "primaryKey": false,
720
+ "notNull": false,
721
+ "autoincrement": false
722
+ },
723
+ "pinned": {
724
+ "name": "pinned",
725
+ "type": "integer",
726
+ "primaryKey": false,
727
+ "notNull": false,
728
+ "autoincrement": false,
729
+ "default": false
730
+ },
731
+ "created_at": {
732
+ "name": "created_at",
733
+ "type": "text",
734
+ "primaryKey": false,
735
+ "notNull": true,
736
+ "autoincrement": false
737
+ },
738
+ "updated_at": {
739
+ "name": "updated_at",
740
+ "type": "text",
741
+ "primaryKey": false,
742
+ "notNull": true,
743
+ "autoincrement": false
744
+ }
745
+ },
746
+ "indexes": {},
747
+ "foreignKeys": {},
748
+ "compositePrimaryKeys": {},
749
+ "uniqueConstraints": {},
750
+ "checkConstraints": {}
751
+ },
752
+ "terminal_tabs": {
753
+ "name": "terminal_tabs",
754
+ "columns": {
755
+ "id": {
756
+ "name": "id",
757
+ "type": "text",
758
+ "primaryKey": true,
759
+ "notNull": true,
760
+ "autoincrement": false
761
+ },
762
+ "name": {
763
+ "name": "name",
764
+ "type": "text",
765
+ "primaryKey": false,
766
+ "notNull": true,
767
+ "autoincrement": false
768
+ },
769
+ "position": {
770
+ "name": "position",
771
+ "type": "integer",
772
+ "primaryKey": false,
773
+ "notNull": true,
774
+ "autoincrement": false,
775
+ "default": 0
776
+ },
777
+ "directory": {
778
+ "name": "directory",
779
+ "type": "text",
780
+ "primaryKey": false,
781
+ "notNull": false,
782
+ "autoincrement": false
783
+ },
784
+ "created_at": {
785
+ "name": "created_at",
786
+ "type": "text",
787
+ "primaryKey": false,
788
+ "notNull": true,
789
+ "autoincrement": false
790
+ },
791
+ "updated_at": {
792
+ "name": "updated_at",
793
+ "type": "text",
794
+ "primaryKey": false,
795
+ "notNull": true,
796
+ "autoincrement": false
797
+ }
798
+ },
799
+ "indexes": {},
800
+ "foreignKeys": {},
801
+ "compositePrimaryKeys": {},
802
+ "uniqueConstraints": {},
803
+ "checkConstraints": {}
804
+ },
805
+ "terminal_view_state": {
806
+ "name": "terminal_view_state",
807
+ "columns": {
808
+ "id": {
809
+ "name": "id",
810
+ "type": "text",
811
+ "primaryKey": true,
812
+ "notNull": true,
813
+ "autoincrement": false,
814
+ "default": "'singleton'"
815
+ },
816
+ "active_tab_id": {
817
+ "name": "active_tab_id",
818
+ "type": "text",
819
+ "primaryKey": false,
820
+ "notNull": false,
821
+ "autoincrement": false
822
+ },
823
+ "focused_terminals": {
824
+ "name": "focused_terminals",
825
+ "type": "text",
826
+ "primaryKey": false,
827
+ "notNull": false,
828
+ "autoincrement": false
829
+ },
830
+ "selected_project_ids": {
831
+ "name": "selected_project_ids",
832
+ "type": "text",
833
+ "primaryKey": false,
834
+ "notNull": false,
835
+ "autoincrement": false
836
+ },
837
+ "current_view": {
838
+ "name": "current_view",
839
+ "type": "text",
840
+ "primaryKey": false,
841
+ "notNull": false,
842
+ "autoincrement": false
843
+ },
844
+ "current_task_id": {
845
+ "name": "current_task_id",
846
+ "type": "text",
847
+ "primaryKey": false,
848
+ "notNull": false,
849
+ "autoincrement": false
850
+ },
851
+ "is_tab_visible": {
852
+ "name": "is_tab_visible",
853
+ "type": "integer",
854
+ "primaryKey": false,
855
+ "notNull": false,
856
+ "autoincrement": false
857
+ },
858
+ "view_updated_at": {
859
+ "name": "view_updated_at",
860
+ "type": "text",
861
+ "primaryKey": false,
862
+ "notNull": false,
863
+ "autoincrement": false
864
+ },
865
+ "updated_at": {
866
+ "name": "updated_at",
867
+ "type": "text",
868
+ "primaryKey": false,
869
+ "notNull": true,
870
+ "autoincrement": false
871
+ }
872
+ },
873
+ "indexes": {},
874
+ "foreignKeys": {},
875
+ "compositePrimaryKeys": {},
876
+ "uniqueConstraints": {},
877
+ "checkConstraints": {}
878
+ },
879
+ "terminals": {
880
+ "name": "terminals",
881
+ "columns": {
882
+ "id": {
883
+ "name": "id",
884
+ "type": "text",
885
+ "primaryKey": true,
886
+ "notNull": true,
887
+ "autoincrement": false
888
+ },
889
+ "name": {
890
+ "name": "name",
891
+ "type": "text",
892
+ "primaryKey": false,
893
+ "notNull": true,
894
+ "autoincrement": false
895
+ },
896
+ "cwd": {
897
+ "name": "cwd",
898
+ "type": "text",
899
+ "primaryKey": false,
900
+ "notNull": true,
901
+ "autoincrement": false
902
+ },
903
+ "cols": {
904
+ "name": "cols",
905
+ "type": "integer",
906
+ "primaryKey": false,
907
+ "notNull": true,
908
+ "autoincrement": false,
909
+ "default": 80
910
+ },
911
+ "rows": {
912
+ "name": "rows",
913
+ "type": "integer",
914
+ "primaryKey": false,
915
+ "notNull": true,
916
+ "autoincrement": false,
917
+ "default": 24
918
+ },
919
+ "tmux_session": {
920
+ "name": "tmux_session",
921
+ "type": "text",
922
+ "primaryKey": false,
923
+ "notNull": true,
924
+ "autoincrement": false
925
+ },
926
+ "status": {
927
+ "name": "status",
928
+ "type": "text",
929
+ "primaryKey": false,
930
+ "notNull": true,
931
+ "autoincrement": false,
932
+ "default": "'running'"
933
+ },
934
+ "exit_code": {
935
+ "name": "exit_code",
936
+ "type": "integer",
937
+ "primaryKey": false,
938
+ "notNull": false,
939
+ "autoincrement": false
940
+ },
941
+ "tab_id": {
942
+ "name": "tab_id",
943
+ "type": "text",
944
+ "primaryKey": false,
945
+ "notNull": false,
946
+ "autoincrement": false
947
+ },
948
+ "position_in_tab": {
949
+ "name": "position_in_tab",
950
+ "type": "integer",
951
+ "primaryKey": false,
952
+ "notNull": false,
953
+ "autoincrement": false,
954
+ "default": 0
955
+ },
956
+ "created_at": {
957
+ "name": "created_at",
958
+ "type": "text",
959
+ "primaryKey": false,
960
+ "notNull": true,
961
+ "autoincrement": false
962
+ },
963
+ "updated_at": {
964
+ "name": "updated_at",
965
+ "type": "text",
966
+ "primaryKey": false,
967
+ "notNull": true,
968
+ "autoincrement": false
969
+ }
970
+ },
971
+ "indexes": {},
972
+ "foreignKeys": {},
973
+ "compositePrimaryKeys": {},
974
+ "uniqueConstraints": {},
975
+ "checkConstraints": {}
976
+ },
977
+ "tunnels": {
978
+ "name": "tunnels",
979
+ "columns": {
980
+ "id": {
981
+ "name": "id",
982
+ "type": "text",
983
+ "primaryKey": true,
984
+ "notNull": true,
985
+ "autoincrement": false
986
+ },
987
+ "app_id": {
988
+ "name": "app_id",
989
+ "type": "text",
990
+ "primaryKey": false,
991
+ "notNull": true,
992
+ "autoincrement": false
993
+ },
994
+ "tunnel_id": {
995
+ "name": "tunnel_id",
996
+ "type": "text",
997
+ "primaryKey": false,
998
+ "notNull": true,
999
+ "autoincrement": false
1000
+ },
1001
+ "tunnel_name": {
1002
+ "name": "tunnel_name",
1003
+ "type": "text",
1004
+ "primaryKey": false,
1005
+ "notNull": true,
1006
+ "autoincrement": false
1007
+ },
1008
+ "tunnel_token": {
1009
+ "name": "tunnel_token",
1010
+ "type": "text",
1011
+ "primaryKey": false,
1012
+ "notNull": true,
1013
+ "autoincrement": false
1014
+ },
1015
+ "status": {
1016
+ "name": "status",
1017
+ "type": "text",
1018
+ "primaryKey": false,
1019
+ "notNull": true,
1020
+ "autoincrement": false,
1021
+ "default": "'inactive'"
1022
+ },
1023
+ "created_at": {
1024
+ "name": "created_at",
1025
+ "type": "text",
1026
+ "primaryKey": false,
1027
+ "notNull": true,
1028
+ "autoincrement": false
1029
+ },
1030
+ "updated_at": {
1031
+ "name": "updated_at",
1032
+ "type": "text",
1033
+ "primaryKey": false,
1034
+ "notNull": true,
1035
+ "autoincrement": false
1036
+ }
1037
+ },
1038
+ "indexes": {
1039
+ "tunnels_app_id_unique": {
1040
+ "name": "tunnels_app_id_unique",
1041
+ "columns": [
1042
+ "app_id"
1043
+ ],
1044
+ "isUnique": true
1045
+ }
1046
+ },
1047
+ "foreignKeys": {},
1048
+ "compositePrimaryKeys": {},
1049
+ "uniqueConstraints": {},
1050
+ "checkConstraints": {}
1051
+ }
1052
+ },
1053
+ "views": {},
1054
+ "enums": {},
1055
+ "_meta": {
1056
+ "schemas": {},
1057
+ "tables": {},
1058
+ "columns": {}
1059
+ },
1060
+ "internal": {
1061
+ "indexes": {}
1062
+ }
1063
+ }