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" (:module "src/models"
:components :components
((:file "models"))) ((:file "models")
(:file "user")))
(:static-file "README.md"))) (:static-file "README.md")))

2
src/database.lisp

@ -3,7 +3,7 @@
;;; DB connection, migrations. ;;; DB connection, migrations.
;;; ;;;
(defparameter *tables* '(product) (defparameter *tables* '(product user)
"List of the DB tables that need to be checked for migrations.") "List of the DB tables that need to be checked for migrations.")
(defun connect (&optional (db-name *db-name*)) (defun connect (&optional (db-name *db-name*))

Loading…
Cancel
Save