Browse Source

create user class and add to database table.

stable
Craig Oates 2 years ago
parent
commit
ff0c121e63
  1. 3
      ritherdon-archive.asd
  2. 2
      src/database.lisp

3
ritherdon-archive.asd

@ -69,7 +69,8 @@
(:module "src/models"
:components
((:file "models")))
((:file "models")
(:file "user")))
(:static-file "README.md")))

2
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*))

Loading…
Cancel
Save