From 938b1c1b42b294c7688528756f495964b8be5367 Mon Sep 17 00:00:00 2001 From: Nicole C. Engard Date: Thu, 12 Jul 2012 09:13:53 -0400 Subject: [PATCH] Bug 6716: Document the biblio_framework table --- installer/data/mysql/kohastructure.sql | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 3b9827a..77e6d42 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -135,9 +135,9 @@ CREATE TABLE `biblio` ( -- table that stores bibliographic information -- DROP TABLE IF EXISTS `biblio_framework`; -CREATE TABLE `biblio_framework` ( - `frameworkcode` varchar(4) NOT NULL default '', - `frameworktext` varchar(255) NOT NULL default '', +CREATE TABLE `biblio_framework` ( -- information about MARC frameworks + `frameworkcode` varchar(4) NOT NULL default '', -- the unique code assigned to the framework + `frameworktext` varchar(255) NOT NULL default '', -- the description/name given to the framework PRIMARY KEY (`frameworkcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- 1.7.2.3