@treeport/treeport 0.4.0 → 0.5.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,792 @@
1
+ {
2
+ "version": "6",
3
+ "dialect": "sqlite",
4
+ "id": "03dee9a7-243d-4bbb-8131-7b65f287e377",
5
+ "prevId": "05ca1b81-cda8-4fbd-94ec-1f533cac858d",
6
+ "tables": {
7
+ "operations": {
8
+ "name": "operations",
9
+ "columns": {
10
+ "id": {
11
+ "name": "id",
12
+ "type": "text",
13
+ "primaryKey": true,
14
+ "notNull": true,
15
+ "autoincrement": false
16
+ },
17
+ "kind": {
18
+ "name": "kind",
19
+ "type": "text",
20
+ "primaryKey": false,
21
+ "notNull": true,
22
+ "autoincrement": false
23
+ },
24
+ "project_id": {
25
+ "name": "project_id",
26
+ "type": "text",
27
+ "primaryKey": false,
28
+ "notNull": false,
29
+ "autoincrement": false
30
+ },
31
+ "worktree_id": {
32
+ "name": "worktree_id",
33
+ "type": "text",
34
+ "primaryKey": false,
35
+ "notNull": false,
36
+ "autoincrement": false
37
+ },
38
+ "status": {
39
+ "name": "status",
40
+ "type": "text",
41
+ "primaryKey": false,
42
+ "notNull": true,
43
+ "autoincrement": false
44
+ },
45
+ "request_json": {
46
+ "name": "request_json",
47
+ "type": "text",
48
+ "primaryKey": false,
49
+ "notNull": true,
50
+ "autoincrement": false
51
+ },
52
+ "result_json": {
53
+ "name": "result_json",
54
+ "type": "text",
55
+ "primaryKey": false,
56
+ "notNull": false,
57
+ "autoincrement": false
58
+ },
59
+ "error": {
60
+ "name": "error",
61
+ "type": "text",
62
+ "primaryKey": false,
63
+ "notNull": false,
64
+ "autoincrement": false
65
+ },
66
+ "created_at": {
67
+ "name": "created_at",
68
+ "type": "text",
69
+ "primaryKey": false,
70
+ "notNull": true,
71
+ "autoincrement": false
72
+ },
73
+ "updated_at": {
74
+ "name": "updated_at",
75
+ "type": "text",
76
+ "primaryKey": false,
77
+ "notNull": true,
78
+ "autoincrement": false
79
+ }
80
+ },
81
+ "indexes": {
82
+ "operations_worktree_idx": {
83
+ "name": "operations_worktree_idx",
84
+ "columns": ["worktree_id"],
85
+ "isUnique": false
86
+ },
87
+ "operations_project_kind_status_idx": {
88
+ "name": "operations_project_kind_status_idx",
89
+ "columns": ["project_id", "kind", "status"],
90
+ "isUnique": false
91
+ }
92
+ },
93
+ "foreignKeys": {
94
+ "operations_project_id_projects_id_fk": {
95
+ "name": "operations_project_id_projects_id_fk",
96
+ "tableFrom": "operations",
97
+ "tableTo": "projects",
98
+ "columnsFrom": ["project_id"],
99
+ "columnsTo": ["id"],
100
+ "onDelete": "set null",
101
+ "onUpdate": "no action"
102
+ },
103
+ "operations_worktree_id_worktrees_id_fk": {
104
+ "name": "operations_worktree_id_worktrees_id_fk",
105
+ "tableFrom": "operations",
106
+ "tableTo": "worktrees",
107
+ "columnsFrom": ["worktree_id"],
108
+ "columnsTo": ["id"],
109
+ "onDelete": "set null",
110
+ "onUpdate": "no action"
111
+ }
112
+ },
113
+ "compositePrimaryKeys": {},
114
+ "uniqueConstraints": {},
115
+ "checkConstraints": {
116
+ "operations_kind_check": {
117
+ "name": "operations_kind_check",
118
+ "value": "\"operations\".\"kind\" IN ('create','finish','discard','project_cleanup','remove','external_remove')"
119
+ },
120
+ "operations_status_check": {
121
+ "name": "operations_status_check",
122
+ "value": "\"operations\".\"status\" IN ('pending','running','completed','failed')"
123
+ }
124
+ }
125
+ },
126
+ "projects": {
127
+ "name": "projects",
128
+ "columns": {
129
+ "id": {
130
+ "name": "id",
131
+ "type": "text",
132
+ "primaryKey": true,
133
+ "notNull": true,
134
+ "autoincrement": false
135
+ },
136
+ "name": {
137
+ "name": "name",
138
+ "type": "text",
139
+ "primaryKey": false,
140
+ "notNull": true,
141
+ "autoincrement": false
142
+ },
143
+ "repository_path": {
144
+ "name": "repository_path",
145
+ "type": "text",
146
+ "primaryKey": false,
147
+ "notNull": true,
148
+ "autoincrement": false
149
+ },
150
+ "main_worktree_path": {
151
+ "name": "main_worktree_path",
152
+ "type": "text",
153
+ "primaryKey": false,
154
+ "notNull": true,
155
+ "autoincrement": false
156
+ },
157
+ "default_branch": {
158
+ "name": "default_branch",
159
+ "type": "text",
160
+ "primaryKey": false,
161
+ "notNull": true,
162
+ "autoincrement": false
163
+ },
164
+ "color": {
165
+ "name": "color",
166
+ "type": "text",
167
+ "primaryKey": false,
168
+ "notNull": false,
169
+ "autoincrement": false
170
+ },
171
+ "repository_identity": {
172
+ "name": "repository_identity",
173
+ "type": "text",
174
+ "primaryKey": false,
175
+ "notNull": false,
176
+ "autoincrement": false
177
+ },
178
+ "repository_device": {
179
+ "name": "repository_device",
180
+ "type": "text",
181
+ "primaryKey": false,
182
+ "notNull": true,
183
+ "autoincrement": false
184
+ },
185
+ "repository_inode": {
186
+ "name": "repository_inode",
187
+ "type": "text",
188
+ "primaryKey": false,
189
+ "notNull": true,
190
+ "autoincrement": false
191
+ },
192
+ "name_is_custom": {
193
+ "name": "name_is_custom",
194
+ "type": "integer",
195
+ "primaryKey": false,
196
+ "notNull": true,
197
+ "autoincrement": false,
198
+ "default": 0
199
+ },
200
+ "is_open": {
201
+ "name": "is_open",
202
+ "type": "integer",
203
+ "primaryKey": false,
204
+ "notNull": true,
205
+ "autoincrement": false,
206
+ "default": 1
207
+ },
208
+ "show_in_recents": {
209
+ "name": "show_in_recents",
210
+ "type": "integer",
211
+ "primaryKey": false,
212
+ "notNull": true,
213
+ "autoincrement": false,
214
+ "default": 0
215
+ },
216
+ "last_opened_at": {
217
+ "name": "last_opened_at",
218
+ "type": "text",
219
+ "primaryKey": false,
220
+ "notNull": true,
221
+ "autoincrement": false
222
+ },
223
+ "created_at": {
224
+ "name": "created_at",
225
+ "type": "text",
226
+ "primaryKey": false,
227
+ "notNull": true,
228
+ "autoincrement": false
229
+ },
230
+ "updated_at": {
231
+ "name": "updated_at",
232
+ "type": "text",
233
+ "primaryKey": false,
234
+ "notNull": true,
235
+ "autoincrement": false
236
+ }
237
+ },
238
+ "indexes": {
239
+ "projects_repository_path_unique": {
240
+ "name": "projects_repository_path_unique",
241
+ "columns": ["repository_path"],
242
+ "isUnique": true
243
+ },
244
+ "projects_repository_identity_idx": {
245
+ "name": "projects_repository_identity_idx",
246
+ "columns": ["repository_identity"],
247
+ "isUnique": true,
248
+ "where": "\"projects\".\"repository_identity\" IS NOT NULL"
249
+ },
250
+ "projects_recent_idx": {
251
+ "name": "projects_recent_idx",
252
+ "columns": [
253
+ "is_open",
254
+ "show_in_recents",
255
+ "\"last_opened_at\" desc",
256
+ "id"
257
+ ],
258
+ "isUnique": false
259
+ }
260
+ },
261
+ "foreignKeys": {},
262
+ "compositePrimaryKeys": {},
263
+ "uniqueConstraints": {},
264
+ "checkConstraints": {
265
+ "projects_color_check": {
266
+ "name": "projects_color_check",
267
+ "value": "\"projects\".\"color\" IS NULL OR \"projects\".\"color\" IN ('rose','orange','amber','emerald','cyan','blue','violet','pink')"
268
+ },
269
+ "projects_name_is_custom_check": {
270
+ "name": "projects_name_is_custom_check",
271
+ "value": "\"projects\".\"name_is_custom\" IN (0,1)"
272
+ },
273
+ "projects_is_open_check": {
274
+ "name": "projects_is_open_check",
275
+ "value": "\"projects\".\"is_open\" IN (0,1)"
276
+ },
277
+ "projects_show_in_recents_check": {
278
+ "name": "projects_show_in_recents_check",
279
+ "value": "\"projects\".\"show_in_recents\" IN (0,1)"
280
+ }
281
+ }
282
+ },
283
+ "terminal_bell_states": {
284
+ "name": "terminal_bell_states",
285
+ "columns": {
286
+ "terminal_id": {
287
+ "name": "terminal_id",
288
+ "type": "text",
289
+ "primaryKey": true,
290
+ "notNull": true,
291
+ "autoincrement": false
292
+ },
293
+ "worktree_id": {
294
+ "name": "worktree_id",
295
+ "type": "text",
296
+ "primaryKey": false,
297
+ "notNull": true,
298
+ "autoincrement": false
299
+ },
300
+ "sequence": {
301
+ "name": "sequence",
302
+ "type": "integer",
303
+ "primaryKey": false,
304
+ "notNull": true,
305
+ "autoincrement": false
306
+ },
307
+ "occurred_at": {
308
+ "name": "occurred_at",
309
+ "type": "text",
310
+ "primaryKey": false,
311
+ "notNull": true,
312
+ "autoincrement": false
313
+ },
314
+ "unread": {
315
+ "name": "unread",
316
+ "type": "integer",
317
+ "primaryKey": false,
318
+ "notNull": true,
319
+ "autoincrement": false
320
+ }
321
+ },
322
+ "indexes": {},
323
+ "foreignKeys": {
324
+ "terminal_bell_states_worktree_id_worktrees_id_fk": {
325
+ "name": "terminal_bell_states_worktree_id_worktrees_id_fk",
326
+ "tableFrom": "terminal_bell_states",
327
+ "tableTo": "worktrees",
328
+ "columnsFrom": ["worktree_id"],
329
+ "columnsTo": ["id"],
330
+ "onDelete": "cascade",
331
+ "onUpdate": "no action"
332
+ }
333
+ },
334
+ "compositePrimaryKeys": {},
335
+ "uniqueConstraints": {},
336
+ "checkConstraints": {
337
+ "terminal_bell_states_sequence_check": {
338
+ "name": "terminal_bell_states_sequence_check",
339
+ "value": "\"terminal_bell_states\".\"sequence\" > 0"
340
+ },
341
+ "terminal_bell_states_unread_check": {
342
+ "name": "terminal_bell_states_unread_check",
343
+ "value": "\"terminal_bell_states\".\"unread\" IN (0,1)"
344
+ }
345
+ }
346
+ },
347
+ "terminal_presets": {
348
+ "name": "terminal_presets",
349
+ "columns": {
350
+ "id": {
351
+ "name": "id",
352
+ "type": "text",
353
+ "primaryKey": true,
354
+ "notNull": true,
355
+ "autoincrement": false
356
+ },
357
+ "name": {
358
+ "name": "name",
359
+ "type": "text",
360
+ "primaryKey": false,
361
+ "notNull": true,
362
+ "autoincrement": false
363
+ },
364
+ "executable": {
365
+ "name": "executable",
366
+ "type": "text",
367
+ "primaryKey": false,
368
+ "notNull": true,
369
+ "autoincrement": false
370
+ },
371
+ "args_json": {
372
+ "name": "args_json",
373
+ "type": "text",
374
+ "primaryKey": false,
375
+ "notNull": true,
376
+ "autoincrement": false
377
+ },
378
+ "close_on_success": {
379
+ "name": "close_on_success",
380
+ "type": "integer",
381
+ "primaryKey": false,
382
+ "notNull": true,
383
+ "autoincrement": false,
384
+ "default": 0
385
+ },
386
+ "created_at": {
387
+ "name": "created_at",
388
+ "type": "text",
389
+ "primaryKey": false,
390
+ "notNull": true,
391
+ "autoincrement": false
392
+ },
393
+ "updated_at": {
394
+ "name": "updated_at",
395
+ "type": "text",
396
+ "primaryKey": false,
397
+ "notNull": true,
398
+ "autoincrement": false
399
+ }
400
+ },
401
+ "indexes": {
402
+ "terminal_presets_order_idx": {
403
+ "name": "terminal_presets_order_idx",
404
+ "columns": ["created_at", "id"],
405
+ "isUnique": false
406
+ }
407
+ },
408
+ "foreignKeys": {},
409
+ "compositePrimaryKeys": {},
410
+ "uniqueConstraints": {},
411
+ "checkConstraints": {
412
+ "terminal_presets_close_on_success_check": {
413
+ "name": "terminal_presets_close_on_success_check",
414
+ "value": "\"terminal_presets\".\"close_on_success\" IN (0,1)"
415
+ }
416
+ }
417
+ },
418
+ "web_panel_storage": {
419
+ "name": "web_panel_storage",
420
+ "columns": {
421
+ "panel_id": {
422
+ "name": "panel_id",
423
+ "type": "text",
424
+ "primaryKey": false,
425
+ "notNull": true,
426
+ "autoincrement": false
427
+ },
428
+ "key": {
429
+ "name": "key",
430
+ "type": "text",
431
+ "primaryKey": false,
432
+ "notNull": true,
433
+ "autoincrement": false
434
+ },
435
+ "value_json": {
436
+ "name": "value_json",
437
+ "type": "text",
438
+ "primaryKey": false,
439
+ "notNull": true,
440
+ "autoincrement": false
441
+ },
442
+ "updated_at": {
443
+ "name": "updated_at",
444
+ "type": "text",
445
+ "primaryKey": false,
446
+ "notNull": true,
447
+ "autoincrement": false
448
+ }
449
+ },
450
+ "indexes": {
451
+ "web_panel_storage_panel_key_idx": {
452
+ "name": "web_panel_storage_panel_key_idx",
453
+ "columns": ["panel_id", "key"],
454
+ "isUnique": true
455
+ }
456
+ },
457
+ "foreignKeys": {
458
+ "web_panel_storage_panel_id_web_panels_id_fk": {
459
+ "name": "web_panel_storage_panel_id_web_panels_id_fk",
460
+ "tableFrom": "web_panel_storage",
461
+ "tableTo": "web_panels",
462
+ "columnsFrom": ["panel_id"],
463
+ "columnsTo": ["id"],
464
+ "onDelete": "cascade",
465
+ "onUpdate": "no action"
466
+ }
467
+ },
468
+ "compositePrimaryKeys": {},
469
+ "uniqueConstraints": {},
470
+ "checkConstraints": {}
471
+ },
472
+ "web_panels": {
473
+ "name": "web_panels",
474
+ "columns": {
475
+ "id": {
476
+ "name": "id",
477
+ "type": "text",
478
+ "primaryKey": true,
479
+ "notNull": true,
480
+ "autoincrement": false
481
+ },
482
+ "worktree_id": {
483
+ "name": "worktree_id",
484
+ "type": "text",
485
+ "primaryKey": false,
486
+ "notNull": true,
487
+ "autoincrement": false
488
+ },
489
+ "definition_id": {
490
+ "name": "definition_id",
491
+ "type": "text",
492
+ "primaryKey": false,
493
+ "notNull": true,
494
+ "autoincrement": false
495
+ },
496
+ "title": {
497
+ "name": "title",
498
+ "type": "text",
499
+ "primaryKey": false,
500
+ "notNull": true,
501
+ "autoincrement": false
502
+ },
503
+ "input_json": {
504
+ "name": "input_json",
505
+ "type": "text",
506
+ "primaryKey": false,
507
+ "notNull": true,
508
+ "autoincrement": false,
509
+ "default": "'null'"
510
+ },
511
+ "launch_cwd": {
512
+ "name": "launch_cwd",
513
+ "type": "text",
514
+ "primaryKey": false,
515
+ "notNull": false,
516
+ "autoincrement": false
517
+ },
518
+ "created_at": {
519
+ "name": "created_at",
520
+ "type": "text",
521
+ "primaryKey": false,
522
+ "notNull": true,
523
+ "autoincrement": false
524
+ },
525
+ "updated_at": {
526
+ "name": "updated_at",
527
+ "type": "text",
528
+ "primaryKey": false,
529
+ "notNull": true,
530
+ "autoincrement": false
531
+ }
532
+ },
533
+ "indexes": {
534
+ "web_panels_worktree_order_idx": {
535
+ "name": "web_panels_worktree_order_idx",
536
+ "columns": ["worktree_id", "created_at", "id"],
537
+ "isUnique": false
538
+ }
539
+ },
540
+ "foreignKeys": {
541
+ "web_panels_worktree_id_worktrees_id_fk": {
542
+ "name": "web_panels_worktree_id_worktrees_id_fk",
543
+ "tableFrom": "web_panels",
544
+ "tableTo": "worktrees",
545
+ "columnsFrom": ["worktree_id"],
546
+ "columnsTo": ["id"],
547
+ "onDelete": "cascade",
548
+ "onUpdate": "no action"
549
+ }
550
+ },
551
+ "compositePrimaryKeys": {},
552
+ "uniqueConstraints": {},
553
+ "checkConstraints": {}
554
+ },
555
+ "worktrees": {
556
+ "name": "worktrees",
557
+ "columns": {
558
+ "id": {
559
+ "name": "id",
560
+ "type": "text",
561
+ "primaryKey": true,
562
+ "notNull": true,
563
+ "autoincrement": false
564
+ },
565
+ "project_id": {
566
+ "name": "project_id",
567
+ "type": "text",
568
+ "primaryKey": false,
569
+ "notNull": true,
570
+ "autoincrement": false
571
+ },
572
+ "path": {
573
+ "name": "path",
574
+ "type": "text",
575
+ "primaryKey": false,
576
+ "notNull": true,
577
+ "autoincrement": false
578
+ },
579
+ "git_worktree_key": {
580
+ "name": "git_worktree_key",
581
+ "type": "text",
582
+ "primaryKey": false,
583
+ "notNull": false,
584
+ "autoincrement": false
585
+ },
586
+ "head": {
587
+ "name": "head",
588
+ "type": "text",
589
+ "primaryKey": false,
590
+ "notNull": true,
591
+ "autoincrement": false,
592
+ "default": "''"
593
+ },
594
+ "branch": {
595
+ "name": "branch",
596
+ "type": "text",
597
+ "primaryKey": false,
598
+ "notNull": false,
599
+ "autoincrement": false
600
+ },
601
+ "detached": {
602
+ "name": "detached",
603
+ "type": "integer",
604
+ "primaryKey": false,
605
+ "notNull": true,
606
+ "autoincrement": false,
607
+ "default": 0
608
+ },
609
+ "locked": {
610
+ "name": "locked",
611
+ "type": "integer",
612
+ "primaryKey": false,
613
+ "notNull": true,
614
+ "autoincrement": false,
615
+ "default": 0
616
+ },
617
+ "lock_reason": {
618
+ "name": "lock_reason",
619
+ "type": "text",
620
+ "primaryKey": false,
621
+ "notNull": false,
622
+ "autoincrement": false
623
+ },
624
+ "prunable": {
625
+ "name": "prunable",
626
+ "type": "integer",
627
+ "primaryKey": false,
628
+ "notNull": true,
629
+ "autoincrement": false,
630
+ "default": 0
631
+ },
632
+ "kind": {
633
+ "name": "kind",
634
+ "type": "text",
635
+ "primaryKey": false,
636
+ "notNull": true,
637
+ "autoincrement": false
638
+ },
639
+ "tmux_socket_name": {
640
+ "name": "tmux_socket_name",
641
+ "type": "text",
642
+ "primaryKey": false,
643
+ "notNull": true,
644
+ "autoincrement": false
645
+ },
646
+ "managed_wrapper_path": {
647
+ "name": "managed_wrapper_path",
648
+ "type": "text",
649
+ "primaryKey": false,
650
+ "notNull": false,
651
+ "autoincrement": false
652
+ },
653
+ "pr_state": {
654
+ "name": "pr_state",
655
+ "type": "text",
656
+ "primaryKey": false,
657
+ "notNull": true,
658
+ "autoincrement": false,
659
+ "default": "'unknown'"
660
+ },
661
+ "pr_number": {
662
+ "name": "pr_number",
663
+ "type": "integer",
664
+ "primaryKey": false,
665
+ "notNull": false,
666
+ "autoincrement": false
667
+ },
668
+ "pr_url": {
669
+ "name": "pr_url",
670
+ "type": "text",
671
+ "primaryKey": false,
672
+ "notNull": false,
673
+ "autoincrement": false
674
+ },
675
+ "pr_base_branch": {
676
+ "name": "pr_base_branch",
677
+ "type": "text",
678
+ "primaryKey": false,
679
+ "notNull": false,
680
+ "autoincrement": false
681
+ },
682
+ "pr_head_branch": {
683
+ "name": "pr_head_branch",
684
+ "type": "text",
685
+ "primaryKey": false,
686
+ "notNull": false,
687
+ "autoincrement": false
688
+ },
689
+ "pr_merged_at": {
690
+ "name": "pr_merged_at",
691
+ "type": "text",
692
+ "primaryKey": false,
693
+ "notNull": false,
694
+ "autoincrement": false
695
+ },
696
+ "pr_refreshed_at": {
697
+ "name": "pr_refreshed_at",
698
+ "type": "text",
699
+ "primaryKey": false,
700
+ "notNull": false,
701
+ "autoincrement": false
702
+ },
703
+ "created_at": {
704
+ "name": "created_at",
705
+ "type": "text",
706
+ "primaryKey": false,
707
+ "notNull": true,
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
+ "worktrees_path_unique": {
720
+ "name": "worktrees_path_unique",
721
+ "columns": ["path"],
722
+ "isUnique": true
723
+ },
724
+ "worktrees_tmux_socket_name_unique": {
725
+ "name": "worktrees_tmux_socket_name_unique",
726
+ "columns": ["tmux_socket_name"],
727
+ "isUnique": true
728
+ },
729
+ "worktrees_project_idx": {
730
+ "name": "worktrees_project_idx",
731
+ "columns": ["project_id"],
732
+ "isUnique": false
733
+ },
734
+ "worktrees_git_key_idx": {
735
+ "name": "worktrees_git_key_idx",
736
+ "columns": ["project_id", "git_worktree_key"],
737
+ "isUnique": true,
738
+ "where": "\"worktrees\".\"git_worktree_key\" IS NOT NULL"
739
+ }
740
+ },
741
+ "foreignKeys": {
742
+ "worktrees_project_id_projects_id_fk": {
743
+ "name": "worktrees_project_id_projects_id_fk",
744
+ "tableFrom": "worktrees",
745
+ "tableTo": "projects",
746
+ "columnsFrom": ["project_id"],
747
+ "columnsTo": ["id"],
748
+ "onDelete": "cascade",
749
+ "onUpdate": "no action"
750
+ }
751
+ },
752
+ "compositePrimaryKeys": {},
753
+ "uniqueConstraints": {},
754
+ "checkConstraints": {
755
+ "worktrees_detached_check": {
756
+ "name": "worktrees_detached_check",
757
+ "value": "\"worktrees\".\"detached\" IN (0,1)"
758
+ },
759
+ "worktrees_locked_check": {
760
+ "name": "worktrees_locked_check",
761
+ "value": "\"worktrees\".\"locked\" IN (0,1)"
762
+ },
763
+ "worktrees_prunable_check": {
764
+ "name": "worktrees_prunable_check",
765
+ "value": "\"worktrees\".\"prunable\" IN (0,1)"
766
+ },
767
+ "worktrees_kind_check": {
768
+ "name": "worktrees_kind_check",
769
+ "value": "\"worktrees\".\"kind\" IN ('main','linked')"
770
+ }
771
+ }
772
+ }
773
+ },
774
+ "views": {},
775
+ "enums": {},
776
+ "_meta": {
777
+ "schemas": {},
778
+ "tables": {},
779
+ "columns": {}
780
+ },
781
+ "internal": {
782
+ "indexes": {
783
+ "projects_recent_idx": {
784
+ "columns": {
785
+ "\"last_opened_at\" desc": {
786
+ "isExpression": true
787
+ }
788
+ }
789
+ }
790
+ }
791
+ }
792
+ }