06/03 Optimize app

This commit is contained in:
2026-06-03 16:26:08 -04:00
parent eb85e70793
commit 3990a01079
+4 -4
View File
@@ -56,9 +56,9 @@ with app.app_context():
conn.commit()
print(f" Added {table}.{column}.")
for sql in CREATE_TABLES:
conn.execute(db.text(sql))
conn.commit()
print(" Created audit_logs table (or already exists).")
for sql in CREATE_TABLES:
conn.execute(db.text(sql))
conn.commit()
print(" Created audit_logs table (or already exists).")
print("Done.")