@cleocode/cleo 2026.3.19 → 2026.3.20

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.
@@ -1,20 +0,0 @@
1
- CREATE TABLE `brain_page_edges` (
2
- `from_id` text NOT NULL,
3
- `to_id` text NOT NULL,
4
- `edge_type` text NOT NULL,
5
- `weight` real DEFAULT 1,
6
- `created_at` text DEFAULT (datetime('now')) NOT NULL,
7
- CONSTRAINT `brain_page_edges_pk` PRIMARY KEY(`from_id`, `to_id`, `edge_type`)
8
- );
9
- --> statement-breakpoint
10
- CREATE TABLE `brain_page_nodes` (
11
- `id` text PRIMARY KEY,
12
- `node_type` text NOT NULL,
13
- `label` text NOT NULL,
14
- `metadata_json` text,
15
- `created_at` text DEFAULT (datetime('now')) NOT NULL
16
- );
17
- --> statement-breakpoint
18
- CREATE INDEX `idx_brain_edges_from` ON `brain_page_edges` (`from_id`);--> statement-breakpoint
19
- CREATE INDEX `idx_brain_edges_to` ON `brain_page_edges` (`to_id`);--> statement-breakpoint
20
- CREATE INDEX `idx_brain_nodes_type` ON `brain_page_nodes` (`node_type`);