From d66b7b80532f46ae07f1d699ce16ed88fad06d91 Mon Sep 17 00:00:00 2001 From: Brian O'Reilly Date: Sun, 7 Dec 2025 11:27:53 -0500 Subject: [PATCH] this effectively reverts the previous case change of the USERS table name I guess for now we'll leave this quirk in --- database.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database.lisp b/database.lisp index 9d08b7a..bbeb568 100644 --- a/database.lisp +++ b/database.lisp @@ -23,8 +23,8 @@ (user-id :integer) (track-ids :text)))) - (unless (db:collection-exists-p "users") - (db:create "users" '((username :text) + (unless (db:collection-exists-p "USERS") + (db:create "USERS" '((username :text) (email :text) (password-hash :text) (role :text)