Skip to content

Instantly share code, notes, and snippets.

@r-moeritz
Created June 16, 2011 18:06
Show Gist options
  • Save r-moeritz/1029836 to your computer and use it in GitHub Desktop.
Save r-moeritz/1029836 to your computer and use it in GitHub Desktop.
game class
(clsql:def-view-class game ()
((id
:db-kind :key
:db-type "int identity(1,1)")
(name
:accessor game-name
:db-constraints (:unique :not-null)
:db-type "nvarchar(50)"
:initarg :name)
(votes
:accessor game-votes
:type integer
:db-constraints :not-null
:initform 0)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment