summaryrefslogtreecommitdiff
path: root/lisp/sql/testimonials.lisp
blob: a1c21a9419e0bd870139f85774f606015e7f98fc (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 :bogenherr)

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