Bug 6716: Document the biblio_framework table
authorNicole C. Engard <nengard@bywatersolutions.com>
Thu, 12 Jul 2012 13:13:53 +0000 (09:13 -0400)
committerPaul Poulain <paul.poulain@biblibre.com>
Mon, 23 Jul 2012 16:23:25 +0000 (18:23 +0200)
installer/data/mysql/kohastructure.sql

index 0b52096..a7279d6 100644 (file)
@@ -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;