From d8c93b757c32862e57a053d78e55d6c60155a258 Mon Sep 17 00:00:00 2001 From: Marcus Pearce Date: Thu, 2 Sep 2004 15:31:04 +0000 Subject: [PATCH] r9952: * examples/clsql-tutorial.lisp: added missing initarg for the COMPANYID slot of the employee View Class definition [reported by Franz Deuzer]. --- ChangeLog | 4 ++++ examples/clsql-tutorial.lisp | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) 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 -- 2.34.1