1234567891011121314151617 |
- ;;;; macros.lisp
- ;;;;
- ;;;; Copyright (c) 2016 Samuel W. Flint <swflint@flintfam.org>
- (in-package #:collect)
- ;;; "collect" goes here.
- (defmacro define-table (name columns constraints))
- (defmacro define-view (name columns query))
- (defmacro define-query (name title query display))
- (defmacro define-form (name title table columns display))
- ;;; End collect
|