diff --git a/ritherdon-archive.asd b/ritherdon-archive.asd index a448aec..945e2e7 100644 --- a/ritherdon-archive.asd +++ b/ritherdon-archive.asd @@ -69,7 +69,8 @@ (:module "src/models" :components - ((:file "models"))) + ((:file "models") + (:file "user"))) (:static-file "README.md"))) diff --git a/src/database.lisp b/src/database.lisp index ffe8f1b..a90962e 100644 --- a/src/database.lisp +++ b/src/database.lisp @@ -3,7 +3,7 @@ ;;; DB connection, migrations. ;;; -(defparameter *tables* '(product) +(defparameter *tables* '(product user) "List of the DB tables that need to be checked for migrations.") (defun connect (&optional (db-name *db-name*))