@anthropic-ai/claude-code 0.2.109 → 0.2.113
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.
- package/cli.js +685 -721
- package/package.json +2 -4
- package/vendor/claude-code.vsix +0 -0
- package/migrations/0000_daffy_genesis.sql +0 -30
- package/migrations/0001_reflective_ulik.sql +0 -6
- package/migrations/0002_daffy_masked_marvel.sql +0 -1
- package/migrations/0003_dusty_ezekiel_stane.sql +0 -5
- package/migrations/0004_secret_iron_patriot.sql +0 -2
- package/migrations/meta/0000_snapshot.json +0 -224
- package/migrations/meta/0001_snapshot.json +0 -269
- package/migrations/meta/0002_snapshot.json +0 -276
- package/migrations/meta/0003_snapshot.json +0 -283
- package/migrations/meta/0004_snapshot.json +0 -297
- package/migrations/meta/_journal.json +0 -41
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anthropic-ai/claude-code",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.113",
|
|
4
4
|
"bin": {
|
|
5
5
|
"claude": "cli.js"
|
|
6
6
|
},
|
|
@@ -19,9 +19,7 @@
|
|
|
19
19
|
"prepare": "node -e \"if (!process.env.AUTHORIZED) { console.error('ERROR: Direct publishing is not allowed.\\nPlease use the publish-external.sh script to publish this package.'); process.exit(1); }\"",
|
|
20
20
|
"preinstall": "node scripts/preinstall.js"
|
|
21
21
|
},
|
|
22
|
-
"dependencies": {
|
|
23
|
-
"better-sqlite3": "^11.9.1"
|
|
24
|
-
},
|
|
22
|
+
"dependencies": {},
|
|
25
23
|
"optionalDependencies": {
|
|
26
24
|
"@img/sharp-darwin-arm64": "^0.33.5",
|
|
27
25
|
"@img/sharp-linux-arm": "^0.33.5",
|
package/vendor/claude-code.vsix
CHANGED
|
Binary file
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
CREATE TABLE `assistant_messages` (
|
|
2
|
-
`uuid` text PRIMARY KEY NOT NULL,
|
|
3
|
-
`cost_usd` real NOT NULL,
|
|
4
|
-
`duration_ms` integer NOT NULL,
|
|
5
|
-
`message` text NOT NULL,
|
|
6
|
-
`is_api_error_message` integer DEFAULT false NOT NULL,
|
|
7
|
-
`timestamp` integer NOT NULL,
|
|
8
|
-
FOREIGN KEY (`uuid`) REFERENCES `base_messages`(`uuid`) ON UPDATE no action ON DELETE no action
|
|
9
|
-
);
|
|
10
|
-
--> statement-breakpoint
|
|
11
|
-
CREATE TABLE `base_messages` (
|
|
12
|
-
`uuid` text PRIMARY KEY NOT NULL,
|
|
13
|
-
`parent_uuid` text,
|
|
14
|
-
`session_id` text NOT NULL,
|
|
15
|
-
`timestamp` integer NOT NULL,
|
|
16
|
-
`message_type` text NOT NULL,
|
|
17
|
-
`cwd` text NOT NULL,
|
|
18
|
-
`user_type` text NOT NULL,
|
|
19
|
-
`version` text NOT NULL,
|
|
20
|
-
`isSidechain` integer NOT NULL,
|
|
21
|
-
FOREIGN KEY (`parent_uuid`) REFERENCES `base_messages`(`uuid`) ON UPDATE no action ON DELETE no action
|
|
22
|
-
);
|
|
23
|
-
--> statement-breakpoint
|
|
24
|
-
CREATE TABLE `user_messages` (
|
|
25
|
-
`uuid` text PRIMARY KEY NOT NULL,
|
|
26
|
-
`message` text NOT NULL,
|
|
27
|
-
`tool_use_result` text,
|
|
28
|
-
`timestamp` integer NOT NULL,
|
|
29
|
-
FOREIGN KEY (`uuid`) REFERENCES `base_messages`(`uuid`) ON UPDATE no action ON DELETE no action
|
|
30
|
-
);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
ALTER TABLE `assistant_messages` ADD `model` text DEFAULT '' NOT NULL;
|
|
@@ -1,224 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "6",
|
|
3
|
-
"dialect": "sqlite",
|
|
4
|
-
"id": "2d33dc16-67f1-4347-ab2b-5ef4ba78a826",
|
|
5
|
-
"prevId": "00000000-0000-0000-0000-000000000000",
|
|
6
|
-
"tables": {
|
|
7
|
-
"assistant_messages": {
|
|
8
|
-
"name": "assistant_messages",
|
|
9
|
-
"columns": {
|
|
10
|
-
"uuid": {
|
|
11
|
-
"name": "uuid",
|
|
12
|
-
"type": "text",
|
|
13
|
-
"primaryKey": true,
|
|
14
|
-
"notNull": true,
|
|
15
|
-
"autoincrement": false
|
|
16
|
-
},
|
|
17
|
-
"cost_usd": {
|
|
18
|
-
"name": "cost_usd",
|
|
19
|
-
"type": "real",
|
|
20
|
-
"primaryKey": false,
|
|
21
|
-
"notNull": true,
|
|
22
|
-
"autoincrement": false
|
|
23
|
-
},
|
|
24
|
-
"duration_ms": {
|
|
25
|
-
"name": "duration_ms",
|
|
26
|
-
"type": "integer",
|
|
27
|
-
"primaryKey": false,
|
|
28
|
-
"notNull": true,
|
|
29
|
-
"autoincrement": false
|
|
30
|
-
},
|
|
31
|
-
"message": {
|
|
32
|
-
"name": "message",
|
|
33
|
-
"type": "text",
|
|
34
|
-
"primaryKey": false,
|
|
35
|
-
"notNull": true,
|
|
36
|
-
"autoincrement": false
|
|
37
|
-
},
|
|
38
|
-
"is_api_error_message": {
|
|
39
|
-
"name": "is_api_error_message",
|
|
40
|
-
"type": "integer",
|
|
41
|
-
"primaryKey": false,
|
|
42
|
-
"notNull": true,
|
|
43
|
-
"autoincrement": false,
|
|
44
|
-
"default": false
|
|
45
|
-
},
|
|
46
|
-
"timestamp": {
|
|
47
|
-
"name": "timestamp",
|
|
48
|
-
"type": "integer",
|
|
49
|
-
"primaryKey": false,
|
|
50
|
-
"notNull": true,
|
|
51
|
-
"autoincrement": false
|
|
52
|
-
}
|
|
53
|
-
},
|
|
54
|
-
"indexes": {},
|
|
55
|
-
"foreignKeys": {
|
|
56
|
-
"assistant_messages_uuid_base_messages_uuid_fk": {
|
|
57
|
-
"name": "assistant_messages_uuid_base_messages_uuid_fk",
|
|
58
|
-
"tableFrom": "assistant_messages",
|
|
59
|
-
"tableTo": "base_messages",
|
|
60
|
-
"columnsFrom": [
|
|
61
|
-
"uuid"
|
|
62
|
-
],
|
|
63
|
-
"columnsTo": [
|
|
64
|
-
"uuid"
|
|
65
|
-
],
|
|
66
|
-
"onDelete": "no action",
|
|
67
|
-
"onUpdate": "no action"
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
"compositePrimaryKeys": {},
|
|
71
|
-
"uniqueConstraints": {},
|
|
72
|
-
"checkConstraints": {}
|
|
73
|
-
},
|
|
74
|
-
"base_messages": {
|
|
75
|
-
"name": "base_messages",
|
|
76
|
-
"columns": {
|
|
77
|
-
"uuid": {
|
|
78
|
-
"name": "uuid",
|
|
79
|
-
"type": "text",
|
|
80
|
-
"primaryKey": true,
|
|
81
|
-
"notNull": true,
|
|
82
|
-
"autoincrement": false
|
|
83
|
-
},
|
|
84
|
-
"parent_uuid": {
|
|
85
|
-
"name": "parent_uuid",
|
|
86
|
-
"type": "text",
|
|
87
|
-
"primaryKey": false,
|
|
88
|
-
"notNull": false,
|
|
89
|
-
"autoincrement": false
|
|
90
|
-
},
|
|
91
|
-
"session_id": {
|
|
92
|
-
"name": "session_id",
|
|
93
|
-
"type": "text",
|
|
94
|
-
"primaryKey": false,
|
|
95
|
-
"notNull": true,
|
|
96
|
-
"autoincrement": false
|
|
97
|
-
},
|
|
98
|
-
"timestamp": {
|
|
99
|
-
"name": "timestamp",
|
|
100
|
-
"type": "integer",
|
|
101
|
-
"primaryKey": false,
|
|
102
|
-
"notNull": true,
|
|
103
|
-
"autoincrement": false
|
|
104
|
-
},
|
|
105
|
-
"message_type": {
|
|
106
|
-
"name": "message_type",
|
|
107
|
-
"type": "text",
|
|
108
|
-
"primaryKey": false,
|
|
109
|
-
"notNull": true,
|
|
110
|
-
"autoincrement": false
|
|
111
|
-
},
|
|
112
|
-
"cwd": {
|
|
113
|
-
"name": "cwd",
|
|
114
|
-
"type": "text",
|
|
115
|
-
"primaryKey": false,
|
|
116
|
-
"notNull": true,
|
|
117
|
-
"autoincrement": false
|
|
118
|
-
},
|
|
119
|
-
"user_type": {
|
|
120
|
-
"name": "user_type",
|
|
121
|
-
"type": "text",
|
|
122
|
-
"primaryKey": false,
|
|
123
|
-
"notNull": true,
|
|
124
|
-
"autoincrement": false
|
|
125
|
-
},
|
|
126
|
-
"version": {
|
|
127
|
-
"name": "version",
|
|
128
|
-
"type": "text",
|
|
129
|
-
"primaryKey": false,
|
|
130
|
-
"notNull": true,
|
|
131
|
-
"autoincrement": false
|
|
132
|
-
},
|
|
133
|
-
"isSidechain": {
|
|
134
|
-
"name": "isSidechain",
|
|
135
|
-
"type": "integer",
|
|
136
|
-
"primaryKey": false,
|
|
137
|
-
"notNull": true,
|
|
138
|
-
"autoincrement": false
|
|
139
|
-
}
|
|
140
|
-
},
|
|
141
|
-
"indexes": {},
|
|
142
|
-
"foreignKeys": {
|
|
143
|
-
"base_messages_parent_uuid_base_messages_uuid_fk": {
|
|
144
|
-
"name": "base_messages_parent_uuid_base_messages_uuid_fk",
|
|
145
|
-
"tableFrom": "base_messages",
|
|
146
|
-
"tableTo": "base_messages",
|
|
147
|
-
"columnsFrom": [
|
|
148
|
-
"parent_uuid"
|
|
149
|
-
],
|
|
150
|
-
"columnsTo": [
|
|
151
|
-
"uuid"
|
|
152
|
-
],
|
|
153
|
-
"onDelete": "no action",
|
|
154
|
-
"onUpdate": "no action"
|
|
155
|
-
}
|
|
156
|
-
},
|
|
157
|
-
"compositePrimaryKeys": {},
|
|
158
|
-
"uniqueConstraints": {},
|
|
159
|
-
"checkConstraints": {}
|
|
160
|
-
},
|
|
161
|
-
"user_messages": {
|
|
162
|
-
"name": "user_messages",
|
|
163
|
-
"columns": {
|
|
164
|
-
"uuid": {
|
|
165
|
-
"name": "uuid",
|
|
166
|
-
"type": "text",
|
|
167
|
-
"primaryKey": true,
|
|
168
|
-
"notNull": true,
|
|
169
|
-
"autoincrement": false
|
|
170
|
-
},
|
|
171
|
-
"message": {
|
|
172
|
-
"name": "message",
|
|
173
|
-
"type": "text",
|
|
174
|
-
"primaryKey": false,
|
|
175
|
-
"notNull": true,
|
|
176
|
-
"autoincrement": false
|
|
177
|
-
},
|
|
178
|
-
"tool_use_result": {
|
|
179
|
-
"name": "tool_use_result",
|
|
180
|
-
"type": "text",
|
|
181
|
-
"primaryKey": false,
|
|
182
|
-
"notNull": false,
|
|
183
|
-
"autoincrement": false
|
|
184
|
-
},
|
|
185
|
-
"timestamp": {
|
|
186
|
-
"name": "timestamp",
|
|
187
|
-
"type": "integer",
|
|
188
|
-
"primaryKey": false,
|
|
189
|
-
"notNull": true,
|
|
190
|
-
"autoincrement": false
|
|
191
|
-
}
|
|
192
|
-
},
|
|
193
|
-
"indexes": {},
|
|
194
|
-
"foreignKeys": {
|
|
195
|
-
"user_messages_uuid_base_messages_uuid_fk": {
|
|
196
|
-
"name": "user_messages_uuid_base_messages_uuid_fk",
|
|
197
|
-
"tableFrom": "user_messages",
|
|
198
|
-
"tableTo": "base_messages",
|
|
199
|
-
"columnsFrom": [
|
|
200
|
-
"uuid"
|
|
201
|
-
],
|
|
202
|
-
"columnsTo": [
|
|
203
|
-
"uuid"
|
|
204
|
-
],
|
|
205
|
-
"onDelete": "no action",
|
|
206
|
-
"onUpdate": "no action"
|
|
207
|
-
}
|
|
208
|
-
},
|
|
209
|
-
"compositePrimaryKeys": {},
|
|
210
|
-
"uniqueConstraints": {},
|
|
211
|
-
"checkConstraints": {}
|
|
212
|
-
}
|
|
213
|
-
},
|
|
214
|
-
"views": {},
|
|
215
|
-
"enums": {},
|
|
216
|
-
"_meta": {
|
|
217
|
-
"schemas": {},
|
|
218
|
-
"tables": {},
|
|
219
|
-
"columns": {}
|
|
220
|
-
},
|
|
221
|
-
"internal": {
|
|
222
|
-
"indexes": {}
|
|
223
|
-
}
|
|
224
|
-
}
|
|
@@ -1,269 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "6",
|
|
3
|
-
"dialect": "sqlite",
|
|
4
|
-
"id": "2b0af79f-d2b7-4ad0-9781-53b61bc67252",
|
|
5
|
-
"prevId": "2d33dc16-67f1-4347-ab2b-5ef4ba78a826",
|
|
6
|
-
"tables": {
|
|
7
|
-
"assistant_messages": {
|
|
8
|
-
"name": "assistant_messages",
|
|
9
|
-
"columns": {
|
|
10
|
-
"uuid": {
|
|
11
|
-
"name": "uuid",
|
|
12
|
-
"type": "text",
|
|
13
|
-
"primaryKey": true,
|
|
14
|
-
"notNull": true,
|
|
15
|
-
"autoincrement": false
|
|
16
|
-
},
|
|
17
|
-
"cost_usd": {
|
|
18
|
-
"name": "cost_usd",
|
|
19
|
-
"type": "real",
|
|
20
|
-
"primaryKey": false,
|
|
21
|
-
"notNull": true,
|
|
22
|
-
"autoincrement": false
|
|
23
|
-
},
|
|
24
|
-
"duration_ms": {
|
|
25
|
-
"name": "duration_ms",
|
|
26
|
-
"type": "integer",
|
|
27
|
-
"primaryKey": false,
|
|
28
|
-
"notNull": true,
|
|
29
|
-
"autoincrement": false
|
|
30
|
-
},
|
|
31
|
-
"message": {
|
|
32
|
-
"name": "message",
|
|
33
|
-
"type": "text",
|
|
34
|
-
"primaryKey": false,
|
|
35
|
-
"notNull": true,
|
|
36
|
-
"autoincrement": false
|
|
37
|
-
},
|
|
38
|
-
"is_api_error_message": {
|
|
39
|
-
"name": "is_api_error_message",
|
|
40
|
-
"type": "integer",
|
|
41
|
-
"primaryKey": false,
|
|
42
|
-
"notNull": true,
|
|
43
|
-
"autoincrement": false,
|
|
44
|
-
"default": false
|
|
45
|
-
},
|
|
46
|
-
"timestamp": {
|
|
47
|
-
"name": "timestamp",
|
|
48
|
-
"type": "integer",
|
|
49
|
-
"primaryKey": false,
|
|
50
|
-
"notNull": true,
|
|
51
|
-
"autoincrement": false
|
|
52
|
-
}
|
|
53
|
-
},
|
|
54
|
-
"indexes": {},
|
|
55
|
-
"foreignKeys": {
|
|
56
|
-
"assistant_messages_uuid_base_messages_uuid_fk": {
|
|
57
|
-
"name": "assistant_messages_uuid_base_messages_uuid_fk",
|
|
58
|
-
"tableFrom": "assistant_messages",
|
|
59
|
-
"tableTo": "base_messages",
|
|
60
|
-
"columnsFrom": [
|
|
61
|
-
"uuid"
|
|
62
|
-
],
|
|
63
|
-
"columnsTo": [
|
|
64
|
-
"uuid"
|
|
65
|
-
],
|
|
66
|
-
"onDelete": "no action",
|
|
67
|
-
"onUpdate": "no action"
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
"compositePrimaryKeys": {},
|
|
71
|
-
"uniqueConstraints": {},
|
|
72
|
-
"checkConstraints": {}
|
|
73
|
-
},
|
|
74
|
-
"base_messages": {
|
|
75
|
-
"name": "base_messages",
|
|
76
|
-
"columns": {
|
|
77
|
-
"uuid": {
|
|
78
|
-
"name": "uuid",
|
|
79
|
-
"type": "text",
|
|
80
|
-
"primaryKey": true,
|
|
81
|
-
"notNull": true,
|
|
82
|
-
"autoincrement": false
|
|
83
|
-
},
|
|
84
|
-
"parent_uuid": {
|
|
85
|
-
"name": "parent_uuid",
|
|
86
|
-
"type": "text",
|
|
87
|
-
"primaryKey": false,
|
|
88
|
-
"notNull": false,
|
|
89
|
-
"autoincrement": false
|
|
90
|
-
},
|
|
91
|
-
"session_id": {
|
|
92
|
-
"name": "session_id",
|
|
93
|
-
"type": "text",
|
|
94
|
-
"primaryKey": false,
|
|
95
|
-
"notNull": true,
|
|
96
|
-
"autoincrement": false
|
|
97
|
-
},
|
|
98
|
-
"timestamp": {
|
|
99
|
-
"name": "timestamp",
|
|
100
|
-
"type": "integer",
|
|
101
|
-
"primaryKey": false,
|
|
102
|
-
"notNull": true,
|
|
103
|
-
"autoincrement": false
|
|
104
|
-
},
|
|
105
|
-
"message_type": {
|
|
106
|
-
"name": "message_type",
|
|
107
|
-
"type": "text",
|
|
108
|
-
"primaryKey": false,
|
|
109
|
-
"notNull": true,
|
|
110
|
-
"autoincrement": false
|
|
111
|
-
},
|
|
112
|
-
"cwd": {
|
|
113
|
-
"name": "cwd",
|
|
114
|
-
"type": "text",
|
|
115
|
-
"primaryKey": false,
|
|
116
|
-
"notNull": true,
|
|
117
|
-
"autoincrement": false
|
|
118
|
-
},
|
|
119
|
-
"user_type": {
|
|
120
|
-
"name": "user_type",
|
|
121
|
-
"type": "text",
|
|
122
|
-
"primaryKey": false,
|
|
123
|
-
"notNull": true,
|
|
124
|
-
"autoincrement": false
|
|
125
|
-
},
|
|
126
|
-
"version": {
|
|
127
|
-
"name": "version",
|
|
128
|
-
"type": "text",
|
|
129
|
-
"primaryKey": false,
|
|
130
|
-
"notNull": true,
|
|
131
|
-
"autoincrement": false
|
|
132
|
-
},
|
|
133
|
-
"isSidechain": {
|
|
134
|
-
"name": "isSidechain",
|
|
135
|
-
"type": "integer",
|
|
136
|
-
"primaryKey": false,
|
|
137
|
-
"notNull": true,
|
|
138
|
-
"autoincrement": false
|
|
139
|
-
}
|
|
140
|
-
},
|
|
141
|
-
"indexes": {},
|
|
142
|
-
"foreignKeys": {
|
|
143
|
-
"base_messages_parent_uuid_base_messages_uuid_fk": {
|
|
144
|
-
"name": "base_messages_parent_uuid_base_messages_uuid_fk",
|
|
145
|
-
"tableFrom": "base_messages",
|
|
146
|
-
"tableTo": "base_messages",
|
|
147
|
-
"columnsFrom": [
|
|
148
|
-
"parent_uuid"
|
|
149
|
-
],
|
|
150
|
-
"columnsTo": [
|
|
151
|
-
"uuid"
|
|
152
|
-
],
|
|
153
|
-
"onDelete": "no action",
|
|
154
|
-
"onUpdate": "no action"
|
|
155
|
-
}
|
|
156
|
-
},
|
|
157
|
-
"compositePrimaryKeys": {},
|
|
158
|
-
"uniqueConstraints": {},
|
|
159
|
-
"checkConstraints": {}
|
|
160
|
-
},
|
|
161
|
-
"conversation_summaries": {
|
|
162
|
-
"name": "conversation_summaries",
|
|
163
|
-
"columns": {
|
|
164
|
-
"leaf_uuid": {
|
|
165
|
-
"name": "leaf_uuid",
|
|
166
|
-
"type": "text",
|
|
167
|
-
"primaryKey": true,
|
|
168
|
-
"notNull": true,
|
|
169
|
-
"autoincrement": false
|
|
170
|
-
},
|
|
171
|
-
"summary": {
|
|
172
|
-
"name": "summary",
|
|
173
|
-
"type": "text",
|
|
174
|
-
"primaryKey": false,
|
|
175
|
-
"notNull": true,
|
|
176
|
-
"autoincrement": false
|
|
177
|
-
},
|
|
178
|
-
"updated_at": {
|
|
179
|
-
"name": "updated_at",
|
|
180
|
-
"type": "integer",
|
|
181
|
-
"primaryKey": false,
|
|
182
|
-
"notNull": true,
|
|
183
|
-
"autoincrement": false
|
|
184
|
-
}
|
|
185
|
-
},
|
|
186
|
-
"indexes": {},
|
|
187
|
-
"foreignKeys": {
|
|
188
|
-
"conversation_summaries_leaf_uuid_base_messages_uuid_fk": {
|
|
189
|
-
"name": "conversation_summaries_leaf_uuid_base_messages_uuid_fk",
|
|
190
|
-
"tableFrom": "conversation_summaries",
|
|
191
|
-
"tableTo": "base_messages",
|
|
192
|
-
"columnsFrom": [
|
|
193
|
-
"leaf_uuid"
|
|
194
|
-
],
|
|
195
|
-
"columnsTo": [
|
|
196
|
-
"uuid"
|
|
197
|
-
],
|
|
198
|
-
"onDelete": "no action",
|
|
199
|
-
"onUpdate": "no action"
|
|
200
|
-
}
|
|
201
|
-
},
|
|
202
|
-
"compositePrimaryKeys": {},
|
|
203
|
-
"uniqueConstraints": {},
|
|
204
|
-
"checkConstraints": {}
|
|
205
|
-
},
|
|
206
|
-
"user_messages": {
|
|
207
|
-
"name": "user_messages",
|
|
208
|
-
"columns": {
|
|
209
|
-
"uuid": {
|
|
210
|
-
"name": "uuid",
|
|
211
|
-
"type": "text",
|
|
212
|
-
"primaryKey": true,
|
|
213
|
-
"notNull": true,
|
|
214
|
-
"autoincrement": false
|
|
215
|
-
},
|
|
216
|
-
"message": {
|
|
217
|
-
"name": "message",
|
|
218
|
-
"type": "text",
|
|
219
|
-
"primaryKey": false,
|
|
220
|
-
"notNull": true,
|
|
221
|
-
"autoincrement": false
|
|
222
|
-
},
|
|
223
|
-
"tool_use_result": {
|
|
224
|
-
"name": "tool_use_result",
|
|
225
|
-
"type": "text",
|
|
226
|
-
"primaryKey": false,
|
|
227
|
-
"notNull": false,
|
|
228
|
-
"autoincrement": false
|
|
229
|
-
},
|
|
230
|
-
"timestamp": {
|
|
231
|
-
"name": "timestamp",
|
|
232
|
-
"type": "integer",
|
|
233
|
-
"primaryKey": false,
|
|
234
|
-
"notNull": true,
|
|
235
|
-
"autoincrement": false
|
|
236
|
-
}
|
|
237
|
-
},
|
|
238
|
-
"indexes": {},
|
|
239
|
-
"foreignKeys": {
|
|
240
|
-
"user_messages_uuid_base_messages_uuid_fk": {
|
|
241
|
-
"name": "user_messages_uuid_base_messages_uuid_fk",
|
|
242
|
-
"tableFrom": "user_messages",
|
|
243
|
-
"tableTo": "base_messages",
|
|
244
|
-
"columnsFrom": [
|
|
245
|
-
"uuid"
|
|
246
|
-
],
|
|
247
|
-
"columnsTo": [
|
|
248
|
-
"uuid"
|
|
249
|
-
],
|
|
250
|
-
"onDelete": "no action",
|
|
251
|
-
"onUpdate": "no action"
|
|
252
|
-
}
|
|
253
|
-
},
|
|
254
|
-
"compositePrimaryKeys": {},
|
|
255
|
-
"uniqueConstraints": {},
|
|
256
|
-
"checkConstraints": {}
|
|
257
|
-
}
|
|
258
|
-
},
|
|
259
|
-
"views": {},
|
|
260
|
-
"enums": {},
|
|
261
|
-
"_meta": {
|
|
262
|
-
"schemas": {},
|
|
263
|
-
"tables": {},
|
|
264
|
-
"columns": {}
|
|
265
|
-
},
|
|
266
|
-
"internal": {
|
|
267
|
-
"indexes": {}
|
|
268
|
-
}
|
|
269
|
-
}
|