From: Marcus Pearce Date: Thu, 2 Sep 2004 15:31:04 +0000 (+0000) Subject: r9952: * examples/clsql-tutorial.lisp: added missing initarg for the COMPANYID X-Git-Tag: v3.8.6~248 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=d8c93b757c32862e57a053d78e55d6c60155a258 r9952: * examples/clsql-tutorial.lisp: added missing initarg for the COMPANYID slot of the employee View Class definition [reported by Franz Deuzer]. --- diff --git a/ChangeLog b/ChangeLog index c91e688..a29a3bf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +02 Sep 2004 Marcus Pearce + * examples/clsql-tutorial.lisp: added missing initarg for the COMPANYID + slot of the employee View Class definition [reported by Franz Deuzer]. + 01 Sep 2004 Kevin Rosenberg * Version 3.0.1 Release * tests/test-init.lisp: Add second join class to employee-address diff --git a/examples/clsql-tutorial.lisp b/examples/clsql-tutorial.lisp index 5d240d5..118ea20 100644 --- a/examples/clsql-tutorial.lisp +++ b/examples/clsql-tutorial.lisp @@ -34,7 +34,8 @@ :type (string 100) :initarg :email) (companyid - :type integer) + :type integer + :initarg :companyid) (company :accessor employee-company :db-kind :join