From fb34448082e7393a2aeb292f921be48e3605ab62 Mon Sep 17 00:00:00 2001 From: "Nicole C. Engard" Date: Fri, 26 Aug 2011 19:18:02 -0400 Subject: [PATCH] Bug 6716 - Document roadtype table This patch adds documentation to the roadtype table. Signed-off-by: Chris Cormack --- installer/data/mysql/kohastructure.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 7a9355ab75..d4518911f8 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -1590,9 +1590,9 @@ CREATE TABLE `reviews` ( -- patron opac comments -- DROP TABLE IF EXISTS `roadtype`; -CREATE TABLE `roadtype` ( - `roadtypeid` int(11) NOT NULL auto_increment, - `road_type` varchar(100) NOT NULL default '', +CREATE TABLE `roadtype` ( -- road types defined in administration and used in patron management + `roadtypeid` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha for each road type + `road_type` varchar(100) NOT NULL default '', -- text for road type PRIMARY KEY (`roadtypeid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- 2.39.2