Fixing lambda.

This commit is contained in:
2023-12-20 17:56:51 -08:00
parent c764b63d10
commit 945011c052

View File

@@ -14,7 +14,7 @@
(when (not (file-exists? *db*))
(call-with-output-file *db*
(lambda (output-port)
;; Empty body, no content to write to the file
""
)))
(with-db (db)
(exec (sql db "create table if not exists users(id INTEGER PRIMARY KEY, username TEXT, email TEXT, password TEXT, salt TEXT);"))