From a3a6407e51f78a5a1f17a44b95bf554e7e53d19d 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 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 0b52096840..a7279d67fc 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; -- 2.39.5