@ottocode/database 0.1.306 → 0.1.307

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