Fix syntax extensions not loading at b oot

This commit is contained in:
Zef Hemel
2022-11-25 13:05:41 +01:00
parent dd34805071
commit aee071be6a
5 changed files with 15 additions and 12 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ export async function ensureTable(db: AsyncSQLite): Promise<void> {
await db.execute(
`CREATE INDEX ${tableName}_idx ON ${tableName}(key);`,
);
console.log(`Created table ${tableName}`);
// console.log(`Created table ${tableName}`);
}
}