@signetai/signet-memory-openclaw 0.176.2 → 0.176.3
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/dist/index.js +11 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10638,6 +10638,12 @@ function up109(db) {
|
|
|
10638
10638
|
);
|
|
10639
10639
|
`);
|
|
10640
10640
|
}
|
|
10641
|
+
function up110(db) {
|
|
10642
|
+
db.exec(`
|
|
10643
|
+
CREATE INDEX IF NOT EXISTS idx_memory_entity_mentions_entity_memory
|
|
10644
|
+
ON memory_entity_mentions(entity_id, memory_id);
|
|
10645
|
+
`);
|
|
10646
|
+
}
|
|
10641
10647
|
var MIGRATIONS = [
|
|
10642
10648
|
{
|
|
10643
10649
|
version: 1,
|
|
@@ -11508,6 +11514,11 @@ var MIGRATIONS = [
|
|
|
11508
11514
|
artifacts: {
|
|
11509
11515
|
tables: ["telemetry_install"]
|
|
11510
11516
|
}
|
|
11517
|
+
},
|
|
11518
|
+
{
|
|
11519
|
+
version: 110,
|
|
11520
|
+
name: "memory-mention-join-index",
|
|
11521
|
+
up: up110
|
|
11511
11522
|
}
|
|
11512
11523
|
];
|
|
11513
11524
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|