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/education.lisp | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 lisp/sql/education.lisp (limited to 'lisp/sql/education.lisp') diff --git a/lisp/sql/education.lisp b/lisp/sql/education.lisp new file mode 100644 index 0000000..96b5382 --- /dev/null +++ b/lisp/sql/education.lisp @@ -0,0 +1,33 @@ +;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- +(declaim (optimize (speed 0) (safety 3) (debug 3))) + +(in-package :resume) + +(defclass education (postgres-record) + ((id :initarg :id + :initform nil + :accessor id) + (school :initarg :school + :initform nil + :accessor school) + (start_date :initarg :start_date + :initform nil + :accessor start_date) + (end_date :initarg :end_date + :initform nil + :accessor end_date) + (major :initarg :major + :initform nil + :accessor major) + (minor :initarg :minor + :initform nil + :accessor minor) + (degree :initarg :degree + :initform nil + :accessor degree) + (progress :initarg :progress + :initform nil + :accessor progress) + (*table :initform "resume.education") + (*where-expression :initform "id = ~a")) + (:documentation "Holds the data for a resume.education record.")) -- cgit v1.3