no such table email_templates : toas error message

This commit is contained in:
Leon Serfaty G
2025-07-18 03:22:48 +00:00
parent 5fecdac922
commit ae7c8c4880
+8
View File
@@ -20,5 +20,13 @@ db.exec(`
)
`);
db.exec(`
CREATE TABLE IF NOT EXISTS email_templates (
id INTEGER PRIMARY KEY,
subject TEXT,
body TEXT
)
`);
export default db;