remove vacuum

This commit is contained in:
miloschwartz 2025-07-14 16:27:18 -07:00
parent 3505342a8d
commit d6fdb38c22
No known key found for this signature in database

View file

@ -13,8 +13,6 @@ bootstrapVolume();
function createDb() {
const sqlite = new Database(location);
sqlite.pragma('foreign_keys = ON');
sqlite.exec('VACUUM;'); // This will initialize the database file with a valid SQLite header
return DrizzleSqlite(sqlite, { schema });
}