summaryrefslogtreecommitdiff
path: root/lisp/sql/about-us.lisp
blob: 51e4409f368baa079cdba8e70a64ac674735219a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
(declaim (optimize (speed 0) (safety 3) (debug 3)))

(in-package :woodriverlessons)

(defclass about-us (postgres-record)
  ((id :initarg :id
       :initform nil
       :accessor id)
   (content :initarg :content
            :initform nil
            :accessor content)
   (*table :initform "general.about_us")
   (*where-expression :initform "id = ~a"))
  (:documentation "Holds the data for a general.about_us type."))