From e7301bcd63c0cbfc4d55f21d0d7c33c7557d6444 Mon Sep 17 00:00:00 2001 From: ckonstanski Date: Sun, 19 Jul 2026 22:05:02 -0600 Subject: starting resume logic --- lisp/sql/states.lisp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lisp/sql/states.lisp (limited to 'lisp/sql/states.lisp') diff --git a/lisp/sql/states.lisp b/lisp/sql/states.lisp new file mode 100644 index 0000000..7968c16 --- /dev/null +++ b/lisp/sql/states.lisp @@ -0,0 +1,18 @@ +;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- +(declaim (optimize (speed 0) (safety 3) (debug 3))) + +(in-package :resume) + +(defclass states (postgres-record) + ((id :initarg :id + :initform nil + :accessor id) + (state :initarg :state + :initform nil + :accessor state) + (abbr :initarg :abbr + :initform nil + :accessor abbr) + (*table :initform "resume.states") + (*where-expression :initform "id = ~a")) + (:documentation "Holds the data for a resume.states record.")) -- cgit v1.3