This commit is contained in:
2026-04-02 20:26:01 +01:00
parent eb41e95bd3
commit 1a96c95f7c
3 changed files with 8 additions and 3 deletions
+4 -1
View File
@@ -88,10 +88,13 @@ class SQLiteSchemaManager {
await this.createTable(table);
this.insertDbManagerTable(table.tableName);
}
else {
else if (!table.isVector) {
// Update existing table
await this.updateTable(table);
}
else {
return;
}
// Sync indexes
await this.syncIndexes(table);
}