blob: 37ac3d30302eb86a232e311884dc0a1d635ced9f (
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 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."))
|