[Koha-patches] [PATCH] Bug 6716: Document the biblio_framework table

Nicole C. Engard nengard at bywatersolutions.com
Thu Jul 12 15:14:11 CEST 2012


---
 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



More information about the Koha-patches mailing list