From 89a4ae40764fa253bdd95d5c1f781e3e3b266795 Mon Sep 17 00:00:00 2001 From: "Nicole C. Engard" Date: Wed, 18 Jul 2012 21:59:13 -0400 Subject: [PATCH] Bug 6716: Update documentation for the letter table The letter table is now for slips and notices, and had other changes necessary. --- installer/data/mysql/kohastructure.sql | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index f1f8bd6520..48c46f3344 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -1179,13 +1179,13 @@ CREATE TABLE `creator_templates` ( DROP TABLE IF EXISTS `letter`; CREATE TABLE `letter` ( -- table for all notice templates in Koha - `module` varchar(20) NOT NULL default '', -- Koha module that triggers this notice - `code` varchar(20) NOT NULL default '', -- unique identifier for this notice - `branchcode` varchar(10) default NULL, -- foreign key, linking to the branches table for the location the item was checked out - `name` varchar(100) NOT NULL default '', -- plain text name for this notice - `is_html` tinyint(1) default 0, + `module` varchar(20) NOT NULL default '', -- Koha module that triggers this notice or slip + `code` varchar(20) NOT NULL default '', -- unique identifier for this notice or slip + `branchcode` varchar(10) default NULL, -- the branch this notice or slip is used at (branches.branchcode) + `name` varchar(100) NOT NULL default '', -- plain text name for this notice or slip + `is_html` tinyint(1) default 0, -- does this notice or slip use HTML (1 for yes, 0 for no) `title` varchar(200) NOT NULL default '', -- subject line of the notice - `content` text, -- body text for the notice + `content` text, -- body text for the notice or slip PRIMARY KEY (`module`,`code`, `branchcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- 2.39.5