Updates
This commit is contained in:
Vendored
+4
-1
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user