Bug 14695 - Update database
[koha.git] / installer / data / mysql / kohastructure.sql
1 -- MySQL dump 10.9
2 --
3 -- Host: localhost    Database: koha30test
4 -- ------------------------------------------------------
5 -- Server version    4.1.22
6
7 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
8 /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
9 /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
10 /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
11 /*!40101 SET NAMES utf8 */;
12 /*!40103 SET TIME_ZONE='+00:00' */;
13 /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
14 /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
15 /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
16 /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
17
18 --
19 -- Table structure for table `auth_header`
20 --
21
22 DROP TABLE IF EXISTS `auth_header`;
23 CREATE TABLE `auth_header` (
24   `authid` bigint(20) unsigned NOT NULL auto_increment,
25   `authtypecode` varchar(10) NOT NULL default '',
26   `datecreated` date default NULL,
27   `modification_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
28   `origincode` varchar(20) default NULL,
29   `authtrees` mediumtext,
30   `marc` blob,
31   `linkid` bigint(20) default NULL,
32   `marcxml` longtext NOT NULL,
33   PRIMARY KEY  (`authid`),
34   KEY `origincode` (`origincode`)
35 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
36
37 --
38 -- Table structure for table `auth_types`
39 --
40
41 DROP TABLE IF EXISTS `auth_types`;
42 CREATE TABLE `auth_types` (
43   `authtypecode` varchar(10) NOT NULL default '',
44   `authtypetext` varchar(255) NOT NULL default '',
45   `auth_tag_to_report` varchar(3) NOT NULL default '',
46   `summary` mediumtext NOT NULL,
47   PRIMARY KEY  (`authtypecode`)
48 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
49
50 --
51 -- Table structure for table `auth_subfield_structure`
52 --
53
54 DROP TABLE IF EXISTS `auth_subfield_structure`;
55 CREATE TABLE `auth_subfield_structure` (
56   `authtypecode` varchar(10) NOT NULL default '',
57   `tagfield` varchar(3) NOT NULL default '',
58   `tagsubfield` varchar(1) NOT NULL default '',
59   `liblibrarian` varchar(255) NOT NULL default '',
60   `libopac` varchar(255) NOT NULL default '',
61   `repeatable` tinyint(4) NOT NULL default 0,
62   `mandatory` tinyint(4) NOT NULL default 0,
63   `tab` tinyint(1) default NULL,
64   `authorised_value` varchar(10) default NULL,
65   `value_builder` varchar(80) default NULL,
66   `seealso` varchar(255) default NULL,
67   `isurl` tinyint(1) default NULL,
68   `hidden` tinyint(3) NOT NULL default 0,
69   `linkid` tinyint(1) NOT NULL default 0,
70   `kohafield` varchar(45) NULL default '',
71   `frameworkcode` varchar(10) NOT NULL default '',
72   `defaultvalue` TEXT,
73   PRIMARY KEY  (`authtypecode`,`tagfield`,`tagsubfield`),
74   KEY `tab` (`authtypecode`,`tab`),
75   CONSTRAINT `auth_subfield_structure_ibfk_1` FOREIGN KEY (`authtypecode`) REFERENCES `auth_types` (`authtypecode`) ON DELETE CASCADE ON UPDATE CASCADE
76 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
77
78 --
79 -- Table structure for table `auth_tag_structure`
80 --
81
82 DROP TABLE IF EXISTS `auth_tag_structure`;
83 CREATE TABLE `auth_tag_structure` (
84   `authtypecode` varchar(10) NOT NULL default '',
85   `tagfield` varchar(3) NOT NULL default '',
86   `liblibrarian` varchar(255) NOT NULL default '',
87   `libopac` varchar(255) NOT NULL default '',
88   `repeatable` tinyint(4) NOT NULL default 0,
89   `mandatory` tinyint(4) NOT NULL default 0,
90   `authorised_value` varchar(10) default NULL,
91   PRIMARY KEY  (`authtypecode`,`tagfield`),
92   CONSTRAINT `auth_tag_structure_ibfk_1` FOREIGN KEY (`authtypecode`) REFERENCES `auth_types` (`authtypecode`) ON DELETE CASCADE ON UPDATE CASCADE
93 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
94
95 --
96 -- Table structure for table `authorised_values`
97 --
98
99 DROP TABLE IF EXISTS `authorised_values`;
100 CREATE TABLE `authorised_values` ( -- stores values for authorized values categories and values
101   `id` int(11) NOT NULL auto_increment, -- unique key, used to identify the authorized value
102   `category` varchar(32) NOT NULL default '', -- key used to identify the authorized value category
103   `authorised_value` varchar(80) NOT NULL default '', -- code use to identify the authorized value
104   `lib` varchar(200) default NULL, -- authorized value description as printed in the staff client
105   `lib_opac` varchar(200) default NULL, -- authorized value description as printed in the OPAC
106   `imageurl` varchar(200) default NULL, -- authorized value URL
107   PRIMARY KEY  (`id`),
108   KEY `name` (`category`),
109   KEY `lib` (`lib`),
110   KEY `auth_value_idx` (`authorised_value`)
111 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
112
113 --
114 -- Table structure for table `biblio`
115 --
116
117 DROP TABLE IF EXISTS `biblio`;
118 CREATE TABLE `biblio` ( -- table that stores bibliographic information
119   `biblionumber` int(11) NOT NULL auto_increment, -- unique identifier assigned to each bibliographic record
120   `frameworkcode` varchar(4) NOT NULL default '', -- foreign key from the biblio_framework table to identify which framework was used in cataloging this record
121   `author` mediumtext, -- statement of responsibility from MARC record (100$a in MARC21)
122   `title` mediumtext, -- title (without the subtitle) from the MARC record (245$a in MARC21)
123   `unititle` mediumtext, -- uniform title (without the subtitle) from the MARC record (240$a in MARC21)
124   `notes` mediumtext, -- values from the general notes field in the MARC record (500$a in MARC21) split by bar (|)
125   `serial` tinyint(1) default NULL, -- Boolean indicating whether biblio is for a serial
126   `seriestitle` mediumtext,
127   `copyrightdate` smallint(6) default NULL, -- publication or copyright date from the MARC record
128   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this record was last touched
129   `datecreated` DATE NOT NULL, -- the date this record was added to Koha
130   `abstract` mediumtext, -- summary from the MARC record (520$a in MARC21)
131   PRIMARY KEY  (`biblionumber`),
132   KEY `blbnoidx` (`biblionumber`)
133 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
134
135 --
136 -- Table structure for table `biblio_framework`
137 --
138
139 DROP TABLE IF EXISTS `biblio_framework`;
140 CREATE TABLE `biblio_framework` ( -- information about MARC frameworks
141   `frameworkcode` varchar(4) NOT NULL default '', -- the unique code assigned to the framework
142   `frameworktext` varchar(255) NOT NULL default '', -- the description/name given to the framework
143   PRIMARY KEY  (`frameworkcode`)
144 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
145
146 --
147 -- Table structure for table `biblioitems`
148 --
149
150 DROP TABLE IF EXISTS `biblioitems`;
151 CREATE TABLE `biblioitems` ( -- information related to bibliographic records in Koha
152   `biblioitemnumber` int(11) NOT NULL auto_increment, -- primary key, unique identifier assigned by Koha
153   `biblionumber` int(11) NOT NULL default 0, -- foreign key linking this table to the biblio table
154   `volume` mediumtext,
155   `number` mediumtext,
156   `itemtype` varchar(10) default NULL, -- biblio level item type (MARC21 942$c)
157   `isbn` mediumtext, -- ISBN (MARC21 020$a)
158   `issn` mediumtext, -- ISSN (MARC21 022$a)
159   `ean` varchar(13) default NULL,
160   `publicationyear` text,
161   `publishercode` varchar(255) default NULL, -- publisher (MARC21 260$b)
162   `volumedate` date default NULL,
163   `volumedesc` text, -- volume information (MARC21 362$a)
164   `collectiontitle` mediumtext default NULL,
165   `collectionissn` text default NULL,
166   `collectionvolume` mediumtext default NULL,
167   `editionstatement` text default NULL,
168   `editionresponsibility` text default NULL,
169   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
170   `illus` varchar(255) default NULL, -- illustrations (MARC21 300$b)
171   `pages` varchar(255) default NULL, -- number of pages (MARC21 300$c)
172   `notes` mediumtext,
173   `size` varchar(255) default NULL, -- material size (MARC21 300$c)
174   `place` varchar(255) default NULL, -- publication place (MARC21 260$a)
175   `lccn` varchar(25) default NULL, -- library of congress control number (MARC21 010$a)
176   `marc` longblob, -- full bibliographic MARC record
177   `url` text default NULL, -- url (MARC21 856$u)
178   `cn_source` varchar(10) default NULL, -- classification source (MARC21 942$2)
179   `cn_class` varchar(30) default NULL,
180   `cn_item` varchar(10) default NULL,
181   `cn_suffix` varchar(10) default NULL,
182   `cn_sort` varchar(255) default NULL, -- normalized version of the call number used for sorting
183   `agerestriction` varchar(255) default NULL, -- target audience/age restriction from the bib record (MARC21 521$a)
184   `totalissues` int(10),
185   `marcxml` longtext, -- full bibliographic MARC record in MARCXML
186   PRIMARY KEY  (`biblioitemnumber`),
187   KEY `bibinoidx` (`biblioitemnumber`),
188   KEY `bibnoidx` (`biblionumber`),
189   KEY `itemtype_idx` (`itemtype`),
190   KEY `isbn` (`isbn`(255)),
191   KEY `issn` (`issn`(255)),
192   KEY `publishercode` (`publishercode`),
193   CONSTRAINT `biblioitems_ibfk_1` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE
194 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
195
196 --
197 -- Table structure for table `borrower_attribute_types`
198 --
199
200 DROP TABLE IF EXISTS `borrower_attribute_types`;
201 CREATE TABLE `borrower_attribute_types` ( -- definitions for custom patron fields known as extended patron attributes
202   `code` varchar(10) NOT NULL, -- unique key used to identify each custom field
203   `description` varchar(255) NOT NULL, -- description for each custom field
204   `repeatable` tinyint(1) NOT NULL default 0, -- defines whether one patron/borrower can have multiple values for this custom field  (1 for yes, 0 for no)
205   `unique_id` tinyint(1) NOT NULL default 0, -- defines if this value needs to be unique (1 for yes, 0 for no)
206   `opac_display` tinyint(1) NOT NULL default 0, -- defines if this field is visible to patrons on their account in the OPAC (1 for yes, 0 for no)
207   `staff_searchable` tinyint(1) NOT NULL default 0, -- defines if this field is searchable via the patron search in the staff client (1 for yes, 0 for no)
208   `authorised_value_category` varchar(32) default NULL, -- foreign key from authorised_values that links this custom field to an authorized value category
209   `display_checkout` tinyint(1) NOT NULL default 0,-- defines if this field displays in checkout screens
210   `category_code` VARCHAR(10) NULL DEFAULT NULL,-- defines a category for an attribute_type
211   `class` VARCHAR(255) NOT NULL DEFAULT '',-- defines a class for an attribute_type
212   PRIMARY KEY  (`code`),
213   KEY `auth_val_cat_idx` (`authorised_value_category`)
214 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
215
216 --
217 -- Table structure for table `borrower_password_recovery`
218 --
219
220 DROP TABLE IF EXISTS `borrower_password_recovery`;
221 CREATE TABLE IF NOT EXISTS `borrower_password_recovery` ( -- holds information about password recovery attempts
222   `borrowernumber` int(11) NOT NULL, -- the user asking a password recovery
223   `uuid` varchar(128) NOT NULL, -- a unique string to identify a password recovery attempt
224   `valid_until` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, -- a time limit on the password recovery attempt
225   PRIMARY KEY (`borrowernumber`),
226   KEY borrowernumber (borrowernumber)
227 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
228
229 --
230 -- Table structure for table `branchcategories`
231 --
232
233 DROP TABLE IF EXISTS `branchcategories`;
234 CREATE TABLE `branchcategories` ( -- information related to library/branch groups
235   `categorycode` varchar(10) NOT NULL default '', -- unique identifier for the library/branch group
236   `categoryname` varchar(32), -- name of the library/branch group
237   `codedescription` mediumtext, -- longer description of the library/branch group
238   `categorytype` varchar(16), -- says whether this is a search group or a properties group
239   `show_in_pulldown` tinyint(1) NOT NULL DEFAULT '0', -- says this group should be in the opac libararies pulldown if it is enabled
240   PRIMARY KEY  (`categorycode`),
241   KEY `show_in_pulldown` (`show_in_pulldown`)
242 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
243
244 --
245 -- Table structure for table `branches`
246 --
247
248 DROP TABLE IF EXISTS `branches`;
249 CREATE TABLE `branches` ( -- information about your libraries or branches are stored here
250   `branchcode` varchar(10) NOT NULL default '', -- a unique key assigned to each branch
251   `branchname` mediumtext NOT NULL, -- the name of your library or branch
252   `branchaddress1` mediumtext, -- the first address line of for your library or branch
253   `branchaddress2` mediumtext, -- the second address line of for your library or branch
254   `branchaddress3` mediumtext, -- the third address line of for your library or branch
255   `branchzip` varchar(25) default NULL, -- the zip or postal code for your library or branch
256   `branchcity` mediumtext, -- the city or province for your library or branch
257   `branchstate` mediumtext, -- the state for your library or branch
258   `branchcountry` text, -- the county for your library or branch
259   `branchphone` mediumtext, -- the primary phone for your library or branch
260   `branchfax` mediumtext, -- the fax number for your library or branch
261   `branchemail` mediumtext, -- the primary email address for your library or branch
262   `branchreplyto` mediumtext, -- the email to be used as a Reply-To
263   `branchreturnpath` mediumtext, -- the email to be used as Return-Path
264   `branchurl` mediumtext, -- the URL for your library or branch's website
265   `issuing` tinyint(4) default NULL, -- unused in Koha
266   `branchip` varchar(15) default NULL, -- the IP address for your library or branch
267   `branchprinter` varchar(100) default NULL, -- unused in Koha
268   `branchnotes` mediumtext, -- notes related to your library or branch
269   opac_info text, -- HTML that displays in OPAC
270   PRIMARY KEY (`branchcode`)
271 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
272
273 --
274 -- Table structure for table `branchrelations`
275 --
276
277 DROP TABLE IF EXISTS `branchrelations`;
278 CREATE TABLE `branchrelations` ( -- this table links libraries/branches to groups
279   `branchcode` varchar(10) NOT NULL default '', -- foreign key from the branches table to identify the branch
280   `categorycode` varchar(10) NOT NULL default '', -- foreign key from the branchcategories table to identify the group
281   PRIMARY KEY  (`branchcode`,`categorycode`),
282   KEY `branchcode` (`branchcode`),
283   KEY `categorycode` (`categorycode`),
284   CONSTRAINT `branchrelations_ibfk_1` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE,
285   CONSTRAINT `branchrelations_ibfk_2` FOREIGN KEY (`categorycode`) REFERENCES `branchcategories` (`categorycode`) ON DELETE CASCADE ON UPDATE CASCADE
286 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
287
288 --
289 -- Table structure for table `browser`
290 --
291 DROP TABLE IF EXISTS `browser`;
292 CREATE TABLE `browser` (
293   `level` int(11) NOT NULL,
294   `classification` varchar(20) NOT NULL,
295   `description` varchar(255) NOT NULL,
296   `number` bigint(20) NOT NULL,
297   `endnode` tinyint(4) NOT NULL
298 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
299
300 --
301 -- Table structure for table `categories`
302 --
303
304 DROP TABLE IF EXISTS `categories`;
305 CREATE TABLE `categories` ( -- this table shows information related to Koha patron categories
306   `categorycode` varchar(10) NOT NULL default '', -- unique primary key used to idenfity the patron category
307   `description` mediumtext, -- description of the patron category
308   `enrolmentperiod` smallint(6) default NULL, -- number of months the patron is enrolled for (will be NULL if enrolmentperioddate is set)
309   `enrolmentperioddate` DATE NULL DEFAULT NULL, -- date the patron is enrolled until (will be NULL if enrolmentperiod is set)
310   `upperagelimit` smallint(6) default NULL, -- age limit for the patron
311   `dateofbirthrequired` tinyint(1) default NULL, -- the minimum age required for the patron category
312   `finetype` varchar(30) default NULL, -- unused in Koha
313   `bulk` tinyint(1) default NULL,
314   `enrolmentfee` decimal(28,6) default NULL, -- enrollment fee for the patron
315   `overduenoticerequired` tinyint(1) default NULL, -- are overdue notices sent to this patron category (1 for yes, 0 for no)
316   `issuelimit` smallint(6) default NULL, -- unused in Koha
317   `reservefee` decimal(28,6) default NULL, -- cost to place holds
318   `hidelostitems` tinyint(1) NOT NULL default '0', -- are lost items shown to this category (1 for yes, 0 for no)
319   `category_type` varchar(1) NOT NULL default 'A', -- type of Koha patron (Adult, Child, Professional, Organizational, Statistical, Staff)
320   `BlockExpiredPatronOpacActions` tinyint(1) NOT NULL default '-1', -- wheither or not a patron of this category can renew books or place holds once their card has expired. 0 means they can, 1 means they cannot, -1 means use syspref BlockExpiredPatronOpacActions
321   `default_privacy` ENUM( 'default', 'never', 'forever' ) NOT NULL DEFAULT 'default', -- Default privacy setting for this patron category
322   `checkprevcheckout` varchar(7) NOT NULL default 'inherit', -- produce a warning for this patron category if this item has previously been checked out to this patron if 'yes', not if 'no', defer to syspref setting if 'inherit'.
323   PRIMARY KEY  (`categorycode`),
324   UNIQUE KEY `categorycode` (`categorycode`)
325 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
326
327 --
328 -- Table: collections
329 --
330 DROP TABLE IF EXISTS collections;
331 CREATE TABLE collections (
332   colId integer(11) NOT NULL auto_increment,
333   colTitle varchar(100) NOT NULL DEFAULT '',
334   colDesc text NOT NULL,
335   colBranchcode varchar(10) DEFAULT NULL, -- 'branchcode for branch where item should be held.'
336   PRIMARY KEY (colId)
337 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
338
339 --
340 -- Constraints for table `collections`
341 --
342 ALTER TABLE `collections`
343   ADD CONSTRAINT `collections_ibfk_1` FOREIGN KEY (`colBranchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE;
344
345 --
346 -- Table: collections_tracking
347 --
348
349 DROP TABLE IF EXISTS collections_tracking;
350 CREATE TABLE collections_tracking (
351   collections_tracking_id integer(11) NOT NULL auto_increment,
352   colId integer(11) NOT NULL DEFAULT 0 comment 'collections.colId',
353   itemnumber integer(11) NOT NULL DEFAULT 0 comment 'items.itemnumber',
354   PRIMARY KEY (collections_tracking_id)
355 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
356
357 --
358 -- Table structure for table `branch_borrower_circ_rules`
359 --
360
361 DROP TABLE IF EXISTS `branch_borrower_circ_rules`;
362 CREATE TABLE `branch_borrower_circ_rules` ( -- includes default circulation rules for patron categories found under "Checkout limit by patron category"
363   `branchcode` VARCHAR(10) NOT NULL, -- the branch this rule applies to (branches.branchcode)
364   `categorycode` VARCHAR(10) NOT NULL, -- the patron category this rule applies to (categories.categorycode)
365   `maxissueqty` int(4) default NULL, -- the maximum number of checkouts this patron category can have at this branch
366   `maxonsiteissueqty` int(4) default NULL, -- the maximum number of on-site checkouts this patron category can have at this branch
367   PRIMARY KEY (`categorycode`, `branchcode`),
368   CONSTRAINT `branch_borrower_circ_rules_ibfk_1` FOREIGN KEY (`categorycode`) REFERENCES `categories` (`categorycode`)
369     ON DELETE CASCADE ON UPDATE CASCADE,
370   CONSTRAINT `branch_borrower_circ_rules_ibfk_2` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`)
371     ON DELETE CASCADE ON UPDATE CASCADE
372 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
373
374 --
375 -- Table structure for table `default_borrower_circ_rules`
376 --
377
378 DROP TABLE IF EXISTS `default_borrower_circ_rules`;
379 CREATE TABLE `default_borrower_circ_rules` ( -- default checkout rules found under "Default checkout, hold and return policy"
380   `categorycode` VARCHAR(10) NOT NULL, -- patron category this rul
381   `maxissueqty` int(4) default NULL,
382   `maxonsiteissueqty` int(4) default NULL,
383   PRIMARY KEY (`categorycode`),
384   CONSTRAINT `borrower_borrower_circ_rules_ibfk_1` FOREIGN KEY (`categorycode`) REFERENCES `categories` (`categorycode`)
385     ON DELETE CASCADE ON UPDATE CASCADE
386 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
387
388 --
389 -- Table structure for table `default_branch_circ_rules`
390 --
391
392 DROP TABLE IF EXISTS `default_branch_circ_rules`;
393 CREATE TABLE `default_branch_circ_rules` (
394   `branchcode` VARCHAR(10) NOT NULL,
395   `maxissueqty` int(4) default NULL,
396   `maxonsiteissueqty` int(4) default NULL,
397   `holdallowed` tinyint(1) default NULL,
398   hold_fulfillment_policy ENUM('any', 'homebranch', 'holdingbranch') NOT NULL DEFAULT 'any', -- limit trapping of holds by branchcode
399   `returnbranch` varchar(15) default NULL,
400   PRIMARY KEY (`branchcode`),
401   CONSTRAINT `default_branch_circ_rules_ibfk_1` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`)
402     ON DELETE CASCADE ON UPDATE CASCADE
403 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
404
405 --
406 -- Table structure for table `default_circ_rules`
407 --
408
409 DROP TABLE IF EXISTS `default_circ_rules`;
410 CREATE TABLE `default_circ_rules` (
411     `singleton` enum('singleton') NOT NULL default 'singleton',
412     `maxissueqty` int(4) default NULL,
413     `maxonsiteissueqty` int(4) default NULL,
414     `holdallowed` int(1) default NULL,
415     hold_fulfillment_policy ENUM('any', 'homebranch', 'holdingbranch') NOT NULL DEFAULT 'any', -- limit trapping of holds by branchcode
416     `returnbranch` varchar(15) default NULL,
417     PRIMARY KEY (`singleton`)
418 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
419
420 --
421 -- Table structure for table `cities`
422 --
423
424 DROP TABLE IF EXISTS `cities`;
425 CREATE TABLE `cities` ( -- authorized values for cities/states/countries to choose when adding/editing a patron/borrower
426   `cityid` int(11) NOT NULL auto_increment, -- unique identifier added by Koha
427   `city_name` varchar(100) NOT NULL default '', -- name of the city
428   `city_state` VARCHAR( 100 ) NULL DEFAULT NULL, -- name of the state/province
429   `city_country` VARCHAR( 100 ) NULL DEFAULT NULL, -- name of the country
430   `city_zipcode` varchar(20) default NULL, -- zip or postal code
431   PRIMARY KEY  (`cityid`)
432 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
433
434 --
435 -- Table structure for table `class_sort_rules`
436 --
437
438 DROP TABLE IF EXISTS `class_sort_rules`;
439 CREATE TABLE `class_sort_rules` (
440   `class_sort_rule` varchar(10) NOT NULL default '',
441   `description` mediumtext,
442   `sort_routine` varchar(30) NOT NULL default '',
443   PRIMARY KEY (`class_sort_rule`),
444   UNIQUE KEY `class_sort_rule_idx` (`class_sort_rule`)
445 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
446
447 --
448 -- Table structure for table `class_sources`
449 --
450
451 DROP TABLE IF EXISTS `class_sources`;
452 CREATE TABLE `class_sources` (
453   `cn_source` varchar(10) NOT NULL default '',
454   `description` mediumtext,
455   `used` tinyint(4) NOT NULL default 0,
456   `class_sort_rule` varchar(10) NOT NULL default '',
457   PRIMARY KEY (`cn_source`),
458   UNIQUE KEY `cn_source_idx` (`cn_source`),
459   KEY `used_idx` (`used`),
460   CONSTRAINT `class_source_ibfk_1` FOREIGN KEY (`class_sort_rule`) REFERENCES `class_sort_rules` (`class_sort_rule`)
461 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
462
463 --
464 -- Table structure for table `currency`
465 --
466
467 DROP TABLE IF EXISTS `currency`;
468 CREATE TABLE `currency` (
469   `currency` varchar(10) NOT NULL default '',
470   `symbol` varchar(5) default NULL,
471   `isocode` varchar(5) default NULL,
472   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
473   `rate` float(15,5) default NULL,
474   `active` tinyint(1) default NULL,
475   `archived` tinyint(1) DEFAULT 0,
476   PRIMARY KEY  (`currency`)
477 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
478
479 --
480 -- Table structure for table `deletedbiblio`
481 --
482
483 DROP TABLE IF EXISTS `deletedbiblio`;
484 CREATE TABLE `deletedbiblio` ( -- stores information about bibliographic records that have been deleted
485   `biblionumber` int(11) NOT NULL auto_increment, -- unique identifier assigned to each bibliographic record
486   `frameworkcode` varchar(4) NOT NULL default '', -- foriegn key from the biblio_framework table to identify which framework was used in cataloging this record
487   `author` mediumtext, -- statement of responsibility from MARC record (100$a in MARC21)
488   `title` mediumtext, -- title (without the subtitle) from the MARC record (245$a in MARC21)
489   `unititle` mediumtext, -- uniform title (without the subtitle) from the MARC record (240$a in MARC21)
490   `notes` mediumtext, -- values from the general notes field in the MARC record (500$a in MARC21) split by bar (|)
491   `serial` tinyint(1) default NULL, -- Boolean indicating whether biblio is for a serial
492   `seriestitle` mediumtext,
493   `copyrightdate` smallint(6) default NULL, -- publication or copyright date from the MARC record
494   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this record was last touched
495   `datecreated` DATE NOT NULL, -- the date this record was added to Koha
496   `abstract` mediumtext, -- summary from the MARC record (520$a in MARC21)
497   PRIMARY KEY  (`biblionumber`),
498   KEY `blbnoidx` (`biblionumber`)
499 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
500
501 --
502 -- Table structure for table `deletedbiblioitems`
503 --
504
505 DROP TABLE IF EXISTS `deletedbiblioitems`;
506 CREATE TABLE `deletedbiblioitems` ( -- information about bibliographic records that have been deleted
507   `biblioitemnumber` int(11) NOT NULL default 0, -- primary key, unique identifier assigned by Koha
508   `biblionumber` int(11) NOT NULL default 0, -- foreign key linking this table to the biblio table
509   `volume` mediumtext,
510   `number` mediumtext,
511   `itemtype` varchar(10) default NULL, -- biblio level item type (MARC21 942$c)
512   `isbn` mediumtext default NULL, -- ISBN (MARC21 020$a)
513   `issn` mediumtext default NULL, -- ISSN (MARC21 022$a)
514   `ean` varchar(13) default NULL,
515   `publicationyear` text,
516   `publishercode` varchar(255) default NULL, -- publisher (MARC21 260$b)
517   `volumedate` date default NULL,
518   `volumedesc` text, -- volume information (MARC21 362$a)
519   `collectiontitle` mediumtext default NULL,
520   `collectionissn` text default NULL,
521   `collectionvolume` mediumtext default NULL,
522   `editionstatement` text default NULL,
523   `editionresponsibility` text default NULL,
524   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
525   `illus` varchar(255) default NULL, -- illustrations (MARC21 300$b)
526   `pages` varchar(255) default NULL, -- number of pages (MARC21 300$c)
527   `notes` mediumtext,
528   `size` varchar(255) default NULL, -- material size (MARC21 300$c)
529   `place` varchar(255) default NULL, -- publication place (MARC21 260$a)
530   `lccn` varchar(25) default NULL, -- library of congress control number (MARC21 010$a)
531   `marc` longblob, -- full bibliographic MARC record
532   `url` text default NULL, -- url (MARC21 856$u)
533   `cn_source` varchar(10) default NULL, -- classification source (MARC21 942$2)
534   `cn_class` varchar(30) default NULL,
535   `cn_item` varchar(10) default NULL,
536   `cn_suffix` varchar(10) default NULL,
537   `cn_sort` varchar(255) default NULL, -- normalized version of the call number used for sorting
538   `agerestriction` varchar(255) default NULL, -- target audience/age restriction from the bib record (MARC21 521$a)
539   `totalissues` int(10),
540   `marcxml` longtext, -- full bibliographic MARC record in MARCXML
541   PRIMARY KEY  (`biblioitemnumber`),
542   KEY `bibinoidx` (`biblioitemnumber`),
543   KEY `bibnoidx` (`biblionumber`),
544   KEY `itemtype_idx` (`itemtype`),
545   KEY `isbn` (`isbn`(255)),
546   KEY `publishercode` (`publishercode`)
547 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
548
549 --
550 -- Table structure for table `deletedborrowers`
551 --
552
553 DROP TABLE IF EXISTS `deletedborrowers`;
554 CREATE TABLE `deletedborrowers` ( -- stores data related to the patrons/borrowers you have deleted
555   `borrowernumber` int(11) NOT NULL default 0, -- primary key, Koha assigned ID number for patrons/borrowers
556   `cardnumber` varchar(16) default NULL, -- unique key, library assigned ID number for patrons/borrowers
557   `surname` mediumtext NOT NULL, -- patron/borrower's last name (surname)
558   `firstname` text, -- patron/borrower's first name
559   `title` mediumtext, -- patron/borrower's title, for example: Mr. or Mrs.
560   `othernames` mediumtext, -- any other names associated with the patron/borrower
561   `initials` text, -- initials for your patron/borrower
562   `streetnumber` varchar(10) default NULL, -- the house number for your patron/borrower's primary address
563   `streettype` varchar(50) default NULL, -- the street type (Rd., Blvd, etc) for your patron/borrower's primary address
564   `address` mediumtext NOT NULL, -- the first address line for your patron/borrower's primary address
565   `address2` text, -- the second address line for your patron/borrower's primary address
566   `city` mediumtext NOT NULL, -- the city or town for your patron/borrower's primary address
567   `state` text default NULL, -- the state or province for your patron/borrower's primary address
568   `zipcode` varchar(25) default NULL, -- the zip or postal code for your patron/borrower's primary address
569   `country` text, -- the country for your patron/borrower's primary address
570   `email` mediumtext, -- the primary email address for your patron/borrower's primary address
571   `phone` text, -- the primary phone number for your patron/borrower's primary address
572   `mobile` varchar(50) default NULL, -- the other phone number for your patron/borrower's primary address
573   `fax` mediumtext, -- the fax number for your patron/borrower's primary address
574   `emailpro` text, -- the secondary email addres for your patron/borrower's primary address
575   `phonepro` text, -- the secondary phone number for your patron/borrower's primary address
576   `B_streetnumber` varchar(10) default NULL, -- the house number for your patron/borrower's alternate address
577   `B_streettype` varchar(50) default NULL, -- the street type (Rd., Blvd, etc) for your patron/borrower's alternate address
578   `B_address` varchar(100) default NULL, -- the first address line for your patron/borrower's alternate address
579   `B_address2` text default NULL, -- the second address line for your patron/borrower's alternate address
580   `B_city` mediumtext, -- the city or town for your patron/borrower's alternate address
581   `B_state` text default NULL, -- the state for your patron/borrower's alternate address
582   `B_zipcode` varchar(25) default NULL, -- the zip or postal code for your patron/borrower's alternate address
583   `B_country` text, -- the country for your patron/borrower's alternate address
584   `B_email` text, -- the patron/borrower's alternate email address
585   `B_phone` mediumtext, -- the patron/borrower's alternate phone number
586   `dateofbirth` date default NULL, -- the patron/borrower's date of birth (YYYY-MM-DD)
587   `branchcode` varchar(10) NOT NULL default '', -- foreign key from the branches table, includes the code of the patron/borrower's home branch
588   `categorycode` varchar(10) NOT NULL default '', -- foreign key from the categories table, includes the code of the patron category
589   `dateenrolled` date default NULL, -- date the patron was added to Koha (YYYY-MM-DD)
590   `dateexpiry` date default NULL, -- date the patron/borrower's card is set to expire (YYYY-MM-DD)
591   `gonenoaddress` tinyint(1) default NULL, -- set to 1 for yes and 0 for no, flag to note that library marked this patron/borrower as having an unconfirmed address
592   `lost` tinyint(1) default NULL, -- set to 1 for yes and 0 for no, flag to note that library marked this patron/borrower as having lost their card
593   `debarred` date default NULL, -- until this date the patron can only check-in (no loans, no holds, etc.), is a fine based on days instead of money (YYY-MM-DD)
594   `debarredcomment` VARCHAR(255) DEFAULT NULL, -- comment on the stop of patron
595   `contactname` mediumtext, -- used for children and profesionals to include surname or last name of guarentor or organization name
596   `contactfirstname` text, -- used for children to include first name of guarentor
597   `contacttitle` text, -- used for children to include title (Mr., Mrs., etc) of guarentor
598   `guarantorid` int(11) default NULL, -- borrowernumber used for children or professionals to link them to guarentors or organizations
599   `borrowernotes` mediumtext, -- a note on the patron/borrower's account that is only visible in the staff client
600   `relationship` varchar(100) default NULL, -- used for children to include the relationship to their guarentor
601   `sex` varchar(1) default NULL, -- patron/borrower's gender
602   `password` varchar(60) default NULL, -- patron/borrower's encrypted password
603   `flags` int(11) default NULL, -- will include a number associated with the staff member's permissions
604   `userid` varchar(75) default NULL, -- patron/borrower's opac and/or staff client log in
605   `opacnote` mediumtext, -- a note on the patron/borrower's account that is visible in the OPAC and staff client
606   `contactnote` varchar(255) default NULL, -- a note related to the patron/borrower's alternate address
607   `sort1` varchar(80) default NULL, -- a field that can be used for any information unique to the library
608   `sort2` varchar(80) default NULL, -- a field that can be used for any information unique to the library
609   `altcontactfirstname` varchar(255) default NULL, -- first name of alternate contact for the patron/borrower
610   `altcontactsurname` varchar(255) default NULL, -- surname or last name of the alternate contact for the patron/borrower
611   `altcontactaddress1` varchar(255) default NULL, -- the first address line for the alternate contact for the patron/borrower
612   `altcontactaddress2` varchar(255) default NULL, -- the second address line for the alternate contact for the patron/borrower
613   `altcontactaddress3` varchar(255) default NULL, -- the city for the alternate contact for the patron/borrower
614   `altcontactstate` text default NULL, -- the state for the alternate contact for the patron/borrower
615   `altcontactzipcode` varchar(50) default NULL, -- the zipcode for the alternate contact for the patron/borrower
616   `altcontactcountry` text default NULL, -- the country for the alternate contact for the patron/borrower
617   `altcontactphone` varchar(50) default NULL, -- the phone number for the alternate contact for the patron/borrower
618   `smsalertnumber` varchar(50) default NULL, -- the mobile phone number where the patron/borrower would like to receive notices (if SNS turned on)
619   `sms_provider_id` int(11) DEFAULT NULL, -- the provider of the mobile phone number defined in smsalertnumber
620   `privacy` integer(11) DEFAULT '1' NOT NULL, -- patron/borrower's privacy settings related to their reading history  KEY `borrowernumber` (`borrowernumber`),
621   `privacy_guarantor_checkouts` tinyint(1) NOT NULL DEFAULT '0', -- controls if relatives can see this patron's checkouts
622   `checkprevcheckout` varchar(7) NOT NULL default 'inherit', -- produce a warning for this patron if this item has previously been checked out to this patron if 'yes', not if 'no', defer to category setting if 'inherit'.
623   `updated_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, -- time of last change could be useful for synchronization with external systems (among others)
624   KEY borrowernumber (borrowernumber),
625   KEY `cardnumber` (`cardnumber`),
626   KEY `sms_provider_id` (`sms_provider_id`)
627 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
628
629 --
630 -- Table structure for table `deleteditems`
631 --
632
633 DROP TABLE IF EXISTS `deleteditems`;
634 CREATE TABLE `deleteditems` (
635   `itemnumber` int(11) NOT NULL default 0, -- primary key and unique identifier added by Koha
636   `biblionumber` int(11) NOT NULL default 0, -- foreign key from biblio table used to link this item to the right bib record
637   `biblioitemnumber` int(11) NOT NULL default 0, -- foreign key from the biblioitems table to link to item to additional information
638   `barcode` varchar(20) default NULL, -- item barcode (MARC21 952$p)
639   `dateaccessioned` date default NULL, -- date the item was acquired or added to Koha (MARC21 952$d)
640   `booksellerid` mediumtext default NULL, -- where the item was purchased (MARC21 952$e)
641   `homebranch` varchar(10) default NULL, -- foreign key from the branches table for the library that owns this item (MARC21 952$a)
642   `price` decimal(8,2) default NULL, -- purchase price (MARC21 952$g)
643   `replacementprice` decimal(8,2) default NULL, -- cost the library charges to replace the item if it has been marked lost (MARC21 952$v)
644   `replacementpricedate` date default NULL, -- the date the price is effective from (MARC21 952$w)
645   `datelastborrowed` date default NULL, -- the date the item was last checked out
646   `datelastseen` date default NULL, -- the date the item was last see (usually the last time the barcode was scanned or inventory was done)
647   `stack` tinyint(1) default NULL,
648   `notforloan` tinyint(1) NOT NULL default 0, -- authorized value defining why this item is not for loan (MARC21 952$7)
649   `damaged` tinyint(1) NOT NULL default 0, -- authorized value defining this item as damaged (MARC21 952$4)
650   `itemlost` tinyint(1) NOT NULL default 0, -- authorized value defining this item as lost (MARC21 952$1)
651   `itemlost_on` datetime DEFAULT NULL, -- the date and time an item was last marked as lost, NULL if not lost
652   `withdrawn` tinyint(1) NOT NULL default 0, -- authorized value defining this item as withdrawn (MARC21 952$0)
653   `withdrawn_on` datetime DEFAULT NULL, -- the date and time an item was last marked as withdrawn, NULL if not withdrawn
654   `itemcallnumber` varchar(255) default NULL, -- call number for this item (MARC21 952$o)
655   `coded_location_qualifier` varchar(10) default NULL, -- coded location qualifier(MARC21 952$f)
656   `issues` smallint(6) default NULL, -- number of times this item has been checked out
657   `renewals` smallint(6) default NULL, -- number of times this item has been renewed
658   `reserves` smallint(6) default NULL, -- number of times this item has been placed on hold/reserved
659   `restricted` tinyint(1) default NULL, -- authorized value defining use restrictions for this item (MARC21 952$5)
660   `itemnotes` mediumtext, -- public notes on this item (MARC21 952$x)
661   `itemnotes_nonpublic` mediumtext default NULL,
662   `holdingbranch` varchar(10) default NULL, -- foreign key from the branches table for the library that is currently in possession item (MARC21 952$b)
663   `paidfor` mediumtext,
664   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this item was last altered
665   `location` varchar(80) default NULL, -- authorized value for the shelving location for this item (MARC21 952$c)
666   `permanent_location` varchar(80) default NULL, -- linked to the CART and PROC temporary locations feature, stores the permanent shelving location
667   `onloan` date default NULL, -- defines if item is checked out (NULL for not checked out, and checkout date for checked out)
668   `cn_source` varchar(10) default NULL, -- classification source used on this item (MARC21 952$2)
669   `cn_sort` varchar(255) default NULL, -- normalized form of the call number (MARC21 952$o) used for sorting
670   `ccode` varchar(10) default NULL, -- authorized value for the collection code associated with this item (MARC21 952$8)
671   `materials` text default NULL, -- materials specified (MARC21 952$3)
672   `uri` varchar(255) default NULL, -- URL for the item (MARC21 952$u)
673   `itype` varchar(10) default NULL, -- foreign key from the itemtypes table defining the type for this item (MARC21 952$y)
674   `more_subfields_xml` longtext default NULL, -- additional 952 subfields in XML format
675   `enumchron` text default NULL, -- serial enumeration/chronology for the item (MARC21 952$h)
676   `copynumber` varchar(32) default NULL, -- copy number (MARC21 952$t)
677   `stocknumber` varchar(32) default NULL, -- inventory number (MARC21 952$i)
678   `new_status` VARCHAR(32) DEFAULT NULL, -- 'new' value, you can put whatever free-text information. This field is intented to be managed by the automatic_item_modification_by_age cronjob.
679   PRIMARY KEY  (`itemnumber`),
680   KEY `delitembarcodeidx` (`barcode`),
681   KEY `delitemstocknumberidx` (`stocknumber`),
682   KEY `delitembinoidx` (`biblioitemnumber`),
683   KEY `delitembibnoidx` (`biblionumber`),
684   KEY `delhomebranch` (`homebranch`),
685   KEY `delholdingbranch` (`holdingbranch`),
686   KEY `itype_idx` (`itype`)
687 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
688
689 --
690 -- Table structure for table `export_format`
691 --
692
693 DROP TABLE IF EXISTS `export_format`;
694 CREATE TABLE `export_format` (
695   `export_format_id` int(11) NOT NULL auto_increment,
696   `profile` varchar(255) NOT NULL,
697   `description` mediumtext NOT NULL,
698   `content` mediumtext NOT NULL,
699   `csv_separator` varchar(2) NOT NULL,
700   `field_separator` varchar(2) NOT NULL,
701   `subfield_separator` varchar(2) NOT NULL,
702   `encoding` varchar(255) NOT NULL,
703   `type` varchar(255) DEFAULT 'marc',
704   PRIMARY KEY  (`export_format_id`)
705 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Used for CSV export';
706
707 --
708 -- Table structure for table `import_batches`
709 --
710
711 DROP TABLE IF EXISTS `import_batches`;
712 CREATE TABLE `import_batches` ( -- information about batches of marc records that have been imported
713   `import_batch_id` int(11) NOT NULL auto_increment, -- unique identifier and primary key
714   `matcher_id` int(11) default NULL, -- the id of the match rule used (matchpoints.matcher_id)
715   `template_id` int(11) default NULL,
716   `branchcode` varchar(10) default NULL,
717   `num_records` int(11) NOT NULL default 0, -- number of records in the file
718   `num_items` int(11) NOT NULL default 0, -- number of items in the file
719   `upload_timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP, -- date and time the file was uploaded
720   `overlay_action` enum('replace', 'create_new', 'use_template', 'ignore') NOT NULL default 'create_new', -- how to handle duplicate records
721   `nomatch_action` enum('create_new', 'ignore') NOT NULL default 'create_new', -- how to handle records where no match is found
722   `item_action` enum('always_add', 'add_only_for_matches', 'add_only_for_new', 'ignore', 'replace') NOT NULL default 'always_add', -- what to do with item records
723   `import_status` enum('staging', 'staged', 'importing', 'imported', 'reverting', 'reverted', 'cleaned') NOT NULL default 'staging', -- the status of the imported file
724   `batch_type` enum('batch', 'z3950', 'webservice') NOT NULL default 'batch', -- where this batch has come from
725   `record_type` enum('biblio', 'auth', 'holdings') NOT NULL default 'biblio', -- type of record in the batch
726   `file_name` varchar(100), -- the name of the file uploaded
727   `comments` mediumtext, -- any comments added when the file was uploaded
728   PRIMARY KEY (`import_batch_id`),
729   KEY `branchcode` (`branchcode`)
730 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
731
732 --
733 -- Table structure for table `import_records`
734 --
735
736 DROP TABLE IF EXISTS `import_records`;
737 CREATE TABLE `import_records` (
738   `import_record_id` int(11) NOT NULL auto_increment,
739   `import_batch_id` int(11) NOT NULL,
740   `branchcode` varchar(10) default NULL,
741   `record_sequence` int(11) NOT NULL default 0,
742   `upload_timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP,
743   `import_date` DATE default NULL,
744   `marc` longblob NOT NULL,
745   `marcxml` longtext NOT NULL,
746   `marcxml_old` longtext NOT NULL,
747   `record_type` enum('biblio', 'auth', 'holdings') NOT NULL default 'biblio',
748   `overlay_status` enum('no_match', 'auto_match', 'manual_match', 'match_applied') NOT NULL default 'no_match',
749   `status` enum('error', 'staged', 'imported', 'reverted', 'items_reverted', 'ignored') NOT NULL default 'staged',
750   `import_error` mediumtext,
751   `encoding` varchar(40) NOT NULL default '',
752   `z3950random` varchar(40) default NULL,
753   PRIMARY KEY (`import_record_id`),
754   CONSTRAINT `import_records_ifbk_1` FOREIGN KEY (`import_batch_id`)
755              REFERENCES `import_batches` (`import_batch_id`) ON DELETE CASCADE ON UPDATE CASCADE,
756   KEY `branchcode` (`branchcode`),
757   KEY `batch_sequence` (`import_batch_id`, `record_sequence`),
758   KEY `batch_id_record_type` (`import_batch_id`,`record_type`)
759 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
760
761 --
762 -- Table structure for `import_record_matches`
763 --
764 DROP TABLE IF EXISTS `import_record_matches`;
765 CREATE TABLE `import_record_matches` ( -- matches found when importing a batch of records
766   `import_record_id` int(11) NOT NULL, -- the id given to the imported bib record (import_records.import_record_id)
767   `candidate_match_id` int(11) NOT NULL, -- the biblio the imported record matches (biblio.biblionumber)
768   `score` int(11) NOT NULL default 0, -- the match score
769   CONSTRAINT `import_record_matches_ibfk_1` FOREIGN KEY (`import_record_id`)
770              REFERENCES `import_records` (`import_record_id`) ON DELETE CASCADE ON UPDATE CASCADE,
771   KEY `record_score` (`import_record_id`, `score`)
772 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
773
774 --
775 -- Table structure for table `import_auths`
776 --
777
778 DROP TABLE IF EXISTS `import_auths`;
779 CREATE TABLE `import_auths` (
780   `import_record_id` int(11) NOT NULL,
781   `matched_authid` int(11) default NULL,
782   `control_number` varchar(25) default NULL,
783   `authorized_heading` varchar(128) default NULL,
784   `original_source` varchar(25) default NULL,
785   CONSTRAINT `import_auths_ibfk_1` FOREIGN KEY (`import_record_id`)
786              REFERENCES `import_records` (`import_record_id`) ON DELETE CASCADE ON UPDATE CASCADE,
787   KEY `matched_authid` (`matched_authid`)
788 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
789
790 --
791 -- Table structure for table `import_biblios`
792 --
793
794 DROP TABLE IF EXISTS `import_biblios`;
795 CREATE TABLE `import_biblios` (
796   `import_record_id` int(11) NOT NULL,
797   `matched_biblionumber` int(11) default NULL,
798   `control_number` varchar(25) default NULL,
799   `original_source` varchar(25) default NULL,
800   `title` varchar(128) default NULL,
801   `author` varchar(80) default NULL,
802   `isbn` varchar(30) default NULL,
803   `issn` varchar(9) default NULL,
804   `has_items` tinyint(1) NOT NULL default 0,
805   CONSTRAINT `import_biblios_ibfk_1` FOREIGN KEY (`import_record_id`)
806              REFERENCES `import_records` (`import_record_id`) ON DELETE CASCADE ON UPDATE CASCADE,
807   KEY `matched_biblionumber` (`matched_biblionumber`),
808   KEY `title` (`title`),
809   KEY `isbn` (`isbn`)
810 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
811
812 --
813 -- Table structure for table `import_items`
814 --
815
816 DROP TABLE IF EXISTS `import_items`;
817 CREATE TABLE `import_items` (
818   `import_items_id` int(11) NOT NULL auto_increment,
819   `import_record_id` int(11) NOT NULL,
820   `itemnumber` int(11) default NULL,
821   `branchcode` varchar(10) default NULL,
822   `status` enum('error', 'staged', 'imported', 'reverted', 'ignored') NOT NULL default 'staged',
823   `marcxml` longtext NOT NULL,
824   `import_error` mediumtext,
825   PRIMARY KEY (`import_items_id`),
826   CONSTRAINT `import_items_ibfk_1` FOREIGN KEY (`import_record_id`)
827              REFERENCES `import_records` (`import_record_id`) ON DELETE CASCADE ON UPDATE CASCADE,
828   KEY `itemnumber` (`itemnumber`),
829   KEY `branchcode` (`branchcode`)
830 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
831
832 --
833 -- Table structure for table `issuingrules`
834 --
835
836 DROP TABLE IF EXISTS `issuingrules`;
837 CREATE TABLE `issuingrules` ( -- circulation and fine rules
838   `categorycode` varchar(10) NOT NULL default '', -- patron category this rule is for (categories.categorycode)
839   `itemtype` varchar(10) NOT NULL default '', -- item type this rule is for (itemtypes.itemtype)
840   `restrictedtype` tinyint(1) default NULL, -- not used? always NULL
841   `rentaldiscount` decimal(28,6) default NULL, -- percent discount on the rental charge for this item
842   `reservecharge` decimal(28,6) default NULL,
843   `fine` decimal(28,6) default NULL, -- fine amount
844   `finedays` int(11) default NULL, -- suspension in days
845   `maxsuspensiondays` int(11) default NULL, -- max suspension days
846   `firstremind` int(11) default NULL, -- fine grace period
847   `chargeperiod` int(11) default NULL, -- how often the fine amount is charged
848   `chargeperiod_charge_at` tinyint(1) NOT NULL DEFAULT '0', -- Should fine be given at the start ( 1 ) or the end ( 0 ) of the period
849   `accountsent` int(11) default NULL, -- not used? always NULL
850   `chargename` varchar(100) default NULL, -- not used? always NULL
851   `maxissueqty` int(4) default NULL, -- total number of checkouts allowed
852   `maxonsiteissueqty` int(4) default NULL, -- total number of on-site checkouts allowed
853   `issuelength` int(4) default NULL, -- length of checkout in the unit set in issuingrules.lengthunit
854   `lengthunit` varchar(10) default 'days', -- unit of checkout length (days, hours)
855   `hardduedate` date default NULL, -- hard due date
856   `hardduedatecompare` tinyint NOT NULL default "0", -- type of hard due date (1 = after, 0 = on, -1 = before)
857   `renewalsallowed` smallint(6) NOT NULL default "0", -- how many renewals are allowed
858   `renewalperiod` int(4) default NULL, -- renewal period in the unit set in issuingrules.lengthunit
859   `norenewalbefore` int(4) default NULL, -- no renewal allowed until X days or hours before due date.
860   `auto_renew` BOOLEAN default FALSE, -- automatic renewal
861   `reservesallowed` smallint(6) NOT NULL default "0", -- how many holds are allowed
862   `holds_per_record` SMALLINT(6) NOT NULL DEFAULT 1, -- How many holds a patron can have on a given bib
863   `branchcode` varchar(10) NOT NULL default '', -- the branch this rule is for (branches.branchcode)
864   overduefinescap decimal(28,6) default NULL, -- the maximum amount of an overdue fine
865   cap_fine_to_replacement_price BOOLEAN NOT NULL DEFAULT  '0', -- cap the fine based on item's replacement price
866   onshelfholds tinyint(1) NOT NULL default 0, -- allow holds for items that are on shelf
867   opacitemholds char(1) NOT NULL default 'N', -- allow opac users to place specific items on hold
868   PRIMARY KEY  (`branchcode`,`categorycode`,`itemtype`),
869   KEY `categorycode` (`categorycode`),
870   KEY `itemtype` (`itemtype`)
871 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
872
873 --
874 -- Table structure for table `refund_lost_item_fee_rules`
875 --
876
877 DROP TABLE IF EXISTS `refund_lost_item_fee_rules`;
878 CREATE TABLE `refund_lost_item_fee_rules` ( -- refund lost item fee rules tbale
879   `branchcode` varchar(10) NOT NULL default '', -- the branch this rule is for (branches.branchcode)
880   `refund` tinyint(1) NOT NULL default 0, -- control wether to refund lost item fees on return
881   PRIMARY KEY  (`branchcode`)
882 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
883
884 --
885 -- Table structure for table `items`
886 --
887
888 DROP TABLE IF EXISTS `items`;
889 CREATE TABLE `items` ( -- holdings/item information 
890   `itemnumber` int(11) NOT NULL auto_increment, -- primary key and unique identifier added by Koha
891   `biblionumber` int(11) NOT NULL default 0, -- foreign key from biblio table used to link this item to the right bib record
892   `biblioitemnumber` int(11) NOT NULL default 0, -- foreign key from the biblioitems table to link to item to additional information
893   `barcode` varchar(20) default NULL, -- item barcode (MARC21 952$p)
894   `dateaccessioned` date default NULL, -- date the item was acquired or added to Koha (MARC21 952$d)
895   `booksellerid` mediumtext default NULL, -- where the item was purchased (MARC21 952$e)
896   `homebranch` varchar(10) default NULL, -- foreign key from the branches table for the library that owns this item (MARC21 952$a)
897   `price` decimal(8,2) default NULL, -- purchase price (MARC21 952$g)
898   `replacementprice` decimal(8,2) default NULL, -- cost the library charges to replace the item if it has been marked lost (MARC21 952$v)
899   `replacementpricedate` date default NULL, -- the date the price is effective from (MARC21 952$w)
900   `datelastborrowed` date default NULL, -- the date the item was last checked out/issued
901   `datelastseen` date default NULL, -- the date the item was last see (usually the last time the barcode was scanned or inventory was done)
902   `stack` tinyint(1) default NULL,
903   `notforloan` tinyint(1) NOT NULL default 0, -- authorized value defining why this item is not for loan (MARC21 952$7)
904   `damaged` tinyint(1) NOT NULL default 0, -- authorized value defining this item as damaged (MARC21 952$4)
905   `itemlost` tinyint(1) NOT NULL default 0, -- authorized value defining this item as lost (MARC21 952$1)
906   `itemlost_on` datetime DEFAULT NULL, -- the date and time an item was last marked as lost, NULL if not lost
907   `withdrawn` tinyint(1) NOT NULL default 0, -- authorized value defining this item as withdrawn (MARC21 952$0)
908   `withdrawn_on` datetime DEFAULT NULL, -- the date and time an item was last marked as withdrawn, NULL if not withdrawn
909   `itemcallnumber` varchar(255) default NULL, -- call number for this item (MARC21 952$o)
910   `coded_location_qualifier` varchar(10) default NULL, -- coded location qualifier(MARC21 952$f)
911   `issues` smallint(6) default NULL, -- number of times this item has been checked out/issued
912   `renewals` smallint(6) default NULL, -- number of times this item has been renewed
913   `reserves` smallint(6) default NULL, -- number of times this item has been placed on hold/reserved
914   `restricted` tinyint(1) default NULL, -- authorized value defining use restrictions for this item (MARC21 952$5)
915   `itemnotes` mediumtext, -- public notes on this item (MARC21 952$x)
916   `itemnotes_nonpublic` mediumtext default NULL,
917   `holdingbranch` varchar(10) default NULL, -- foreign key from the branches table for the library that is currently in possession item (MARC21 952$b)
918   `paidfor` mediumtext,
919   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this item was last altered
920   `location` varchar(80) default NULL, -- authorized value for the shelving location for this item (MARC21 952$c)
921   `permanent_location` varchar(80) default NULL, -- linked to the CART and PROC temporary locations feature, stores the permanent shelving location
922   `onloan` date default NULL, -- defines if item is checked out (NULL for not checked out, and checkout date for checked out)
923   `cn_source` varchar(10) default NULL, -- classification source used on this item (MARC21 952$2)
924   `cn_sort` varchar(255) default NULL,  -- normalized form of the call number (MARC21 952$o) used for sorting
925   `ccode` varchar(10) default NULL, -- authorized value for the collection code associated with this item (MARC21 952$8)
926   `materials` text default NULL, -- materials specified (MARC21 952$3)
927   `uri` varchar(255) default NULL, -- URL for the item (MARC21 952$u)
928   `itype` varchar(10) default NULL, -- foreign key from the itemtypes table defining the type for this item (MARC21 952$y)
929   `more_subfields_xml` longtext default NULL, -- additional 952 subfields in XML format
930   `enumchron` text default NULL, -- serial enumeration/chronology for the item (MARC21 952$h)
931   `copynumber` varchar(32) default NULL, -- copy number (MARC21 952$t)
932   `stocknumber` varchar(32) default NULL, -- inventory number (MARC21 952$i)
933   `new_status` VARCHAR(32) DEFAULT NULL, -- 'new' value, you can put whatever free-text information. This field is intented to be managed by the automatic_item_modification_by_age cronjob.
934   PRIMARY KEY  (`itemnumber`),
935   UNIQUE KEY `itembarcodeidx` (`barcode`),
936   KEY `itemstocknumberidx` (`stocknumber`),
937   KEY `itembinoidx` (`biblioitemnumber`),
938   KEY `itembibnoidx` (`biblionumber`),
939   KEY `homebranch` (`homebranch`),
940   KEY `holdingbranch` (`holdingbranch`),
941   KEY `itemcallnumber` (`itemcallnumber`),
942   KEY `items_location` (`location`),
943   KEY `items_ccode` (`ccode`),
944   KEY `itype_idx` (`itype`),
945   CONSTRAINT `items_ibfk_1` FOREIGN KEY (`biblioitemnumber`) REFERENCES `biblioitems` (`biblioitemnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
946   CONSTRAINT `items_ibfk_2` FOREIGN KEY (`homebranch`) REFERENCES `branches` (`branchcode`) ON UPDATE CASCADE,
947   CONSTRAINT `items_ibfk_3` FOREIGN KEY (`holdingbranch`) REFERENCES `branches` (`branchcode`) ON UPDATE CASCADE,
948   CONSTRAINT `items_ibfk_4` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE
949 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
950
951 --
952 -- Table structure for table `itemtypes`
953 --
954
955 DROP TABLE IF EXISTS `itemtypes`;
956 CREATE TABLE `itemtypes` ( -- defines the item types
957   itemtype varchar(10) NOT NULL default '', -- unique key, a code associated with the item type
958   description mediumtext, -- a plain text explanation of the item type
959   rentalcharge double(16,4) default NULL, -- the amount charged when this item is checked out/issued
960   notforloan smallint(6) default NULL, -- 1 if the item is not for loan, 0 if the item is available for loan
961   imageurl varchar(200) default NULL, -- URL for the item type icon
962   summary text, -- information from the summary field, may include HTML
963   checkinmsg VARCHAR(255), -- message that is displayed when an item with the given item type is checked in
964   checkinmsgtype CHAR(16) DEFAULT 'message' NOT NULL, -- type (CSS class) for the checkinmsg, can be "alert" or "message"
965   sip_media_type VARCHAR(3) DEFAULT NULL, -- SIP2 protocol media type for this itemtype
966   hideinopac tinyint(1) NOT NULL DEFAULT 0, -- Hide the item type from the search options in OPAC
967   searchcategory varchar(80) default NULL, -- Group this item type with others with the same value on OPAC search options
968   PRIMARY KEY  (`itemtype`),
969   UNIQUE KEY `itemtype` (`itemtype`)
970 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
971
972 --
973 -- Table structure for table `default_branch_item_rules`
974 --
975
976 DROP TABLE IF EXISTS `default_branch_item_rules`;
977 CREATE TABLE `default_branch_item_rules` (
978   `itemtype` varchar(10) NOT NULL,
979   `holdallowed` tinyint(1) default NULL,
980   hold_fulfillment_policy ENUM('any', 'homebranch', 'holdingbranch') NOT NULL DEFAULT 'any', -- limit trapping of holds by branchcode
981   `returnbranch` varchar(15) default NULL,
982   PRIMARY KEY  (`itemtype`),
983   CONSTRAINT `default_branch_item_rules_ibfk_1` FOREIGN KEY (`itemtype`) REFERENCES `itemtypes` (`itemtype`)
984     ON DELETE CASCADE ON UPDATE CASCADE
985 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
986
987 --
988 -- Table structure for table `branchtransfers`
989 --
990
991 DROP TABLE IF EXISTS `branchtransfers`;
992 CREATE TABLE `branchtransfers` ( -- information for items that are in transit between branches
993   `itemnumber` int(11) NOT NULL default 0, -- the itemnumber that it is in transit (items.itemnumber)
994   `datesent` datetime default NULL, -- the date the transfer was initialized
995   `frombranch` varchar(10) NOT NULL default '', -- the branch the transfer is coming from
996   `datearrived` datetime default NULL, -- the date the transfer arrived at its destination
997   `tobranch` varchar(10) NOT NULL default '', -- the branch the transfer was going to
998   `comments` mediumtext, -- any comments related to the transfer
999   KEY `frombranch` (`frombranch`),
1000   KEY `tobranch` (`tobranch`),
1001   KEY `itemnumber` (`itemnumber`),
1002   CONSTRAINT `branchtransfers_ibfk_1` FOREIGN KEY (`frombranch`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE,
1003   CONSTRAINT `branchtransfers_ibfk_2` FOREIGN KEY (`tobranch`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE,
1004   CONSTRAINT `branchtransfers_ibfk_3` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE
1005 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1006
1007 --
1008 -- Table structure for table `branch_item_rules`
1009 --
1010
1011 DROP TABLE IF EXISTS `branch_item_rules`;
1012 CREATE TABLE `branch_item_rules` ( -- information entered in the circulation and fine rules under 'Holds policy by item type'
1013   `branchcode` varchar(10) NOT NULL, -- the branch this rule is for (branches.branchcode)
1014   `itemtype` varchar(10) NOT NULL, -- the item type this rule applies to (items.itype)
1015   `holdallowed` tinyint(1) default NULL, -- the number of holds allowed
1016   hold_fulfillment_policy ENUM('any', 'homebranch', 'holdingbranch') NOT NULL DEFAULT 'any', -- limit trapping of holds by branchcode
1017   `returnbranch` varchar(15) default NULL, -- the branch the item returns to (homebranch, holdingbranch, noreturn)
1018   PRIMARY KEY  (`itemtype`,`branchcode`),
1019   KEY `branch_item_rules_ibfk_2` (`branchcode`),
1020   CONSTRAINT `branch_item_rules_ibfk_1` FOREIGN KEY (`itemtype`) REFERENCES `itemtypes` (`itemtype`)
1021     ON DELETE CASCADE ON UPDATE CASCADE,
1022   CONSTRAINT `branch_item_rules_ibfk_2` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`)
1023     ON DELETE CASCADE ON UPDATE CASCADE
1024 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1025
1026 --
1027 -- Table structure for table `creator_images`
1028 --
1029
1030 DROP TABLE IF EXISTS `creator_images`;
1031 SET @saved_cs_client     = @@character_set_client;
1032 SET character_set_client = utf8;
1033 CREATE TABLE `creator_images` (
1034   `image_id` int(4) NOT NULL AUTO_INCREMENT,
1035   `imagefile` mediumblob,
1036   `image_name` char(20) NOT NULL DEFAULT 'DEFAULT',
1037   PRIMARY KEY (`image_id`),
1038   UNIQUE KEY `image_name_index` (`image_name`)
1039 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1040
1041 --
1042 -- Table structure for table `creator_layouts`
1043 --
1044
1045 DROP TABLE IF EXISTS `creator_layouts`;
1046 SET @saved_cs_client     = @@character_set_client;
1047 SET character_set_client = utf8;
1048 CREATE TABLE `creator_layouts` (
1049   `layout_id` int(4) NOT NULL AUTO_INCREMENT,
1050   `barcode_type` char(100) NOT NULL DEFAULT 'CODE39',
1051   `start_label` int(2) NOT NULL DEFAULT '1',
1052   `printing_type` char(32) NOT NULL DEFAULT 'BAR',
1053   `layout_name` char(25) NOT NULL DEFAULT 'DEFAULT',
1054   `guidebox` int(1) DEFAULT '0',
1055   `oblique_title` int(1) DEFAULT '1',
1056   `font` char(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT 'TR',
1057   `font_size` int(4) NOT NULL DEFAULT '10',
1058   `units` char(20) NOT NULL DEFAULT 'POINT',
1059   `callnum_split` int(1) DEFAULT '0',
1060   `text_justify` char(1) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT 'L',
1061   `format_string` varchar(210) NOT NULL DEFAULT 'barcode',
1062   `layout_xml` text NOT NULL,
1063   `creator` char(15) NOT NULL DEFAULT 'Labels',
1064   PRIMARY KEY (`layout_id`)
1065 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1066
1067 --
1068 -- Table structure for table `creator_templates`
1069 --
1070
1071 DROP TABLE IF EXISTS `creator_templates`;
1072 SET @saved_cs_client     = @@character_set_client;
1073 SET character_set_client = utf8;
1074 CREATE TABLE `creator_templates` (
1075   `template_id` int(4) NOT NULL AUTO_INCREMENT,
1076   `profile_id` int(4) DEFAULT NULL,
1077   `template_code` char(100) NOT NULL DEFAULT 'DEFAULT TEMPLATE',
1078   `template_desc` char(100) NOT NULL DEFAULT 'Default description',
1079   `page_width` float NOT NULL DEFAULT '0',
1080   `page_height` float NOT NULL DEFAULT '0',
1081   `label_width` float NOT NULL DEFAULT '0',
1082   `label_height` float NOT NULL DEFAULT '0',
1083   `top_text_margin` float NOT NULL DEFAULT '0',
1084   `left_text_margin` float NOT NULL DEFAULT '0',
1085   `top_margin` float NOT NULL DEFAULT '0',
1086   `left_margin` float NOT NULL DEFAULT '0',
1087   `cols` int(2) NOT NULL DEFAULT '0',
1088   `rows` int(2) NOT NULL DEFAULT '0',
1089   `col_gap` float NOT NULL DEFAULT '0',
1090   `row_gap` float NOT NULL DEFAULT '0',
1091   `units` char(20) NOT NULL DEFAULT 'POINT',
1092   `creator` char(15) NOT NULL DEFAULT 'Labels',
1093   PRIMARY KEY (`template_id`),
1094   KEY `template_profile_fk_constraint` (`profile_id`)
1095 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1096
1097 --
1098 -- Table structure for table `marc_subfield_structure`
1099 --
1100
1101 DROP TABLE IF EXISTS `marc_subfield_structure`;
1102 CREATE TABLE `marc_subfield_structure` (
1103   `tagfield` varchar(3) NOT NULL default '',
1104   `tagsubfield` varchar(1) NOT NULL default '' COLLATE utf8_bin,
1105   `liblibrarian` varchar(255) NOT NULL default '',
1106   `libopac` varchar(255) NOT NULL default '',
1107   `repeatable` tinyint(4) NOT NULL default 0,
1108   `mandatory` tinyint(4) NOT NULL default 0,
1109   `kohafield` varchar(40) default NULL,
1110   `tab` tinyint(1) default NULL,
1111   `authorised_value` varchar(20) default NULL,
1112   `authtypecode` varchar(20) default NULL,
1113   `value_builder` varchar(80) default NULL,
1114   `isurl` tinyint(1) default NULL,
1115   `hidden` tinyint(1) default NULL,
1116   `frameworkcode` varchar(4) NOT NULL default '',
1117   `seealso` varchar(1100) default NULL,
1118   `link` varchar(80) default NULL,
1119   `defaultvalue` text default NULL,
1120   `maxlength` int(4) NOT NULL DEFAULT '9999',
1121   PRIMARY KEY  (`frameworkcode`,`tagfield`,`tagsubfield`),
1122   KEY `kohafield_2` (`kohafield`),
1123   KEY `tab` (`frameworkcode`,`tab`),
1124   KEY `kohafield` (`frameworkcode`,`kohafield`)
1125 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1126
1127 --
1128 -- Table structure for table `marc_tag_structure`
1129 --
1130
1131 DROP TABLE IF EXISTS `marc_tag_structure`;
1132 CREATE TABLE `marc_tag_structure` (
1133   `tagfield` varchar(3) NOT NULL default '',
1134   `liblibrarian` varchar(255) NOT NULL default '',
1135   `libopac` varchar(255) NOT NULL default '',
1136   `repeatable` tinyint(4) NOT NULL default 0,
1137   `mandatory` tinyint(4) NOT NULL default 0,
1138   `authorised_value` varchar(10) default NULL,
1139   `frameworkcode` varchar(4) NOT NULL default '',
1140   PRIMARY KEY  (`frameworkcode`,`tagfield`)
1141 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1142
1143 --
1144 -- Table structure for table `marc_matchers`
1145 --
1146
1147 DROP TABLE IF EXISTS `marc_matchers`;
1148 CREATE TABLE `marc_matchers` (
1149   `matcher_id` int(11) NOT NULL auto_increment,
1150   `code` varchar(10) NOT NULL default '',
1151   `description` varchar(255) NOT NULL default '',
1152   `record_type` varchar(10) NOT NULL default 'biblio',
1153   `threshold` int(11) NOT NULL default 0,
1154   PRIMARY KEY (`matcher_id`),
1155   KEY `code` (`code`),
1156   KEY `record_type` (`record_type`)
1157 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1158
1159 --
1160 -- Table structure for table `matchpoints`
1161 --
1162 DROP TABLE IF EXISTS `matchpoints`;
1163 CREATE TABLE `matchpoints` (
1164   `matcher_id` int(11) NOT NULL,
1165   `matchpoint_id` int(11) NOT NULL auto_increment,
1166   `search_index` varchar(30) NOT NULL default '',
1167   `score` int(11) NOT NULL default 0,
1168   PRIMARY KEY (`matchpoint_id`),
1169   CONSTRAINT `matchpoints_ifbk_1` FOREIGN KEY (`matcher_id`)
1170   REFERENCES `marc_matchers` (`matcher_id`) ON DELETE CASCADE ON UPDATE CASCADE
1171 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1172
1173
1174 --
1175 -- Table structure for table `matchpoint_components`
1176 --
1177 DROP TABLE IF EXISTS `matchpoint_components`;
1178 CREATE TABLE `matchpoint_components` (
1179   `matchpoint_id` int(11) NOT NULL,
1180   `matchpoint_component_id` int(11) NOT NULL auto_increment,
1181   sequence int(11) NOT NULL default 0,
1182   tag varchar(3) NOT NULL default '',
1183   subfields varchar(40) NOT NULL default '',
1184   offset int(4) NOT NULL default 0,
1185   length int(4) NOT NULL default 0,
1186   PRIMARY KEY (`matchpoint_component_id`),
1187   KEY `by_sequence` (`matchpoint_id`, `sequence`),
1188   CONSTRAINT `matchpoint_components_ifbk_1` FOREIGN KEY (`matchpoint_id`)
1189   REFERENCES `matchpoints` (`matchpoint_id`) ON DELETE CASCADE ON UPDATE CASCADE
1190 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1191
1192 --
1193 -- Table structure for table `matcher_component_norms`
1194 --
1195 DROP TABLE IF EXISTS `matchpoint_component_norms`;
1196 CREATE TABLE `matchpoint_component_norms` (
1197   `matchpoint_component_id` int(11) NOT NULL,
1198   `sequence`  int(11) NOT NULL default 0,
1199   `norm_routine` varchar(50) NOT NULL default '',
1200   KEY `matchpoint_component_norms` (`matchpoint_component_id`, `sequence`),
1201   CONSTRAINT `matchpoint_component_norms_ifbk_1` FOREIGN KEY (`matchpoint_component_id`)
1202   REFERENCES `matchpoint_components` (`matchpoint_component_id`) ON DELETE CASCADE ON UPDATE CASCADE
1203 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1204
1205 --
1206 -- Table structure for table `matcher_matchpoints`
1207 --
1208 DROP TABLE IF EXISTS `matcher_matchpoints`;
1209 CREATE TABLE `matcher_matchpoints` (
1210   `matcher_id` int(11) NOT NULL,
1211   `matchpoint_id` int(11) NOT NULL,
1212   CONSTRAINT `matcher_matchpoints_ifbk_1` FOREIGN KEY (`matcher_id`)
1213   REFERENCES `marc_matchers` (`matcher_id`) ON DELETE CASCADE ON UPDATE CASCADE,
1214   CONSTRAINT `matcher_matchpoints_ifbk_2` FOREIGN KEY (`matchpoint_id`)
1215   REFERENCES `matchpoints` (`matchpoint_id`) ON DELETE CASCADE ON UPDATE CASCADE
1216 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1217
1218 --
1219 -- Table structure for table `matchchecks`
1220 --
1221 DROP TABLE IF EXISTS `matchchecks`;
1222 CREATE TABLE `matchchecks` (
1223   `matcher_id` int(11) NOT NULL,
1224   `matchcheck_id` int(11) NOT NULL auto_increment,
1225   `source_matchpoint_id` int(11) NOT NULL,
1226   `target_matchpoint_id` int(11) NOT NULL,
1227   PRIMARY KEY (`matchcheck_id`),
1228   CONSTRAINT `matcher_matchchecks_ifbk_1` FOREIGN KEY (`matcher_id`)
1229   REFERENCES `marc_matchers` (`matcher_id`) ON DELETE CASCADE ON UPDATE CASCADE,
1230   CONSTRAINT `matcher_matchchecks_ifbk_2` FOREIGN KEY (`source_matchpoint_id`)
1231   REFERENCES `matchpoints` (`matchpoint_id`) ON DELETE CASCADE ON UPDATE CASCADE,
1232   CONSTRAINT `matcher_matchchecks_ifbk_3` FOREIGN KEY (`target_matchpoint_id`)
1233   REFERENCES `matchpoints` (`matchpoint_id`) ON DELETE CASCADE ON UPDATE CASCADE
1234 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1235
1236 --
1237 -- Table structure for table `need_merge_authorities`
1238 --
1239
1240 DROP TABLE IF EXISTS `need_merge_authorities`;
1241 CREATE TABLE `need_merge_authorities` ( -- keeping track of authority records still to be merged by merge_authority cron job (used only if pref dontmerge is ON)
1242   `id` int NOT NULL auto_increment PRIMARY KEY, -- unique id
1243   `authid` bigint NOT NULL, -- reference to authority record
1244   `done` tinyint DEFAULT 0  -- indication whether merge has been executed (0=not done, 1= done, 2= in progress)
1245 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1246
1247 --
1248 -- Table structure for table `notifys`
1249 --
1250
1251 DROP TABLE IF EXISTS `notifys`;
1252 CREATE TABLE `notifys` (
1253   `notify_id` int(11) NOT NULL default 0,
1254   `borrowernumber` int(11) NOT NULL default 0,
1255   `itemnumber` int(11) NOT NULL default 0,
1256   `notify_date` date default NULL,
1257   `notify_send_date` date default NULL,
1258   `notify_level` int(1) NOT NULL default 0,
1259   `method` varchar(20) NOT NULL default ''
1260 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1261
1262 --
1263 -- Table structure for table `oai_sets`
1264 --
1265
1266 DROP TABLE IF EXISTS `oai_sets`;
1267 CREATE TABLE `oai_sets` (
1268   `id` int(11) NOT NULL auto_increment,
1269   `spec` varchar(80) NOT NULL UNIQUE,
1270   `name` varchar(80) NOT NULL,
1271   PRIMARY KEY (`id`)
1272 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1273
1274 --
1275 -- Table structure for table `oai_sets_descriptions`
1276 --
1277
1278 DROP TABLE IF EXISTS `oai_sets_descriptions`;
1279 CREATE TABLE `oai_sets_descriptions` (
1280   `set_id` int(11) NOT NULL,
1281   `description` varchar(255) NOT NULL,
1282   CONSTRAINT `oai_sets_descriptions_ibfk_1` FOREIGN KEY (`set_id`) REFERENCES `oai_sets` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
1283 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1284
1285 --
1286 -- Table structure for table `oai_sets_mappings`
1287 --
1288
1289 DROP TABLE IF EXISTS `oai_sets_mappings`;
1290 CREATE TABLE `oai_sets_mappings` (
1291   `set_id` int(11) NOT NULL,
1292   `marcfield` char(3) NOT NULL,
1293   `marcsubfield` char(1) NOT NULL,
1294   `operator` varchar(8) NOT NULL default 'equal',
1295   `marcvalue` varchar(80) NOT NULL,
1296   CONSTRAINT `oai_sets_mappings_ibfk_1` FOREIGN KEY (`set_id`) REFERENCES `oai_sets` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
1297 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1298
1299 --
1300 -- Table structure for table `oai_sets_biblios`
1301 --
1302
1303 DROP TABLE IF EXISTS `oai_sets_biblios`;
1304 CREATE TABLE `oai_sets_biblios` (
1305   `biblionumber` int(11) NOT NULL,
1306   `set_id` int(11) NOT NULL,
1307   PRIMARY KEY (`biblionumber`, `set_id`),
1308   CONSTRAINT `oai_sets_biblios_ibfk_2` FOREIGN KEY (`set_id`) REFERENCES `oai_sets` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
1309 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1310
1311 --
1312 -- Table structure for table `overduerules`
1313 --
1314
1315 DROP TABLE IF EXISTS `overduerules`;
1316 CREATE TABLE `overduerules` ( -- overdue notice status and triggers
1317   `overduerules_id` int(11) NOT NULL AUTO_INCREMENT, -- unique identifier for the overduerules
1318   `branchcode` varchar(10) NOT NULL default '', -- foreign key from the branches table to define which branch this rule is for (if blank it's all libraries)
1319   `categorycode` varchar(10) NOT NULL default '', -- foreign key from the categories table to define which patron category this rule is for
1320   `delay1` int(4) default NULL, -- number of days after the item is overdue that the first notice is sent
1321   `letter1` varchar(20) default NULL, -- foreign key from the letter table to define which notice should be sent as the first notice
1322   `debarred1` varchar(1) default 0, -- is the patron restricted when the first notice is sent (1 for yes, 0 for no)
1323   `delay2` int(4) default NULL, -- number of days after the item is overdue that the second notice is sent
1324   `debarred2` varchar(1) default 0, -- is the patron restricted when the second notice is sent (1 for yes, 0 for no)
1325   `letter2` varchar(20) default NULL, -- foreign key from the letter table to define which notice should be sent as the second notice
1326   `delay3` int(4) default NULL, -- number of days after the item is overdue that the third notice is sent
1327   `letter3` varchar(20) default NULL, -- foreign key from the letter table to define which notice should be sent as the third notice
1328   `debarred3` int(1) default 0, -- is the patron restricted when the third notice is sent (1 for yes, 0 for no)
1329   PRIMARY KEY  (`overduerules_id`),
1330   UNIQUE KEY `overduerules_branch_cat` (`branchcode`,`categorycode`)
1331 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1332
1333 -- Table structure for table `pending_offline_operations`
1334 --
1335 -- this table is MyISAM, InnoDB tables are growing only and this table is filled/emptied/filled/emptied...
1336 -- so MyISAM is better in this case
1337
1338 DROP TABLE IF EXISTS `pending_offline_operations`;
1339 CREATE TABLE pending_offline_operations (
1340   operationid int(11) NOT NULL AUTO_INCREMENT,
1341   userid varchar(30) NOT NULL,
1342   branchcode varchar(10) NOT NULL,
1343   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
1344   `action` varchar(10) NOT NULL,
1345   barcode varchar(20) DEFAULT NULL,
1346   cardnumber varchar(16) DEFAULT NULL,
1347   amount decimal(28,6) DEFAULT NULL,
1348   PRIMARY KEY (operationid)
1349 ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1350
1351
1352 --
1353 -- Table structure for table `printers`
1354 --
1355
1356 DROP TABLE IF EXISTS `printers`;
1357 CREATE TABLE `printers` (
1358   `printername` varchar(40) NOT NULL default '',
1359   `printqueue` varchar(20) default NULL,
1360   `printtype` varchar(20) default NULL,
1361   PRIMARY KEY  (`printername`)
1362 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1363
1364 --
1365 -- Table structure for table `printers_profile`
1366 --
1367
1368 DROP TABLE IF EXISTS `printers_profile`;
1369 CREATE TABLE `printers_profile` (
1370   `profile_id` int(4) NOT NULL auto_increment,
1371   `printer_name` varchar(40) NOT NULL default 'Default Printer',
1372   `template_id` int(4) NOT NULL default '0',
1373   `paper_bin` varchar(20) NOT NULL default 'Bypass',
1374   `offset_horz` float NOT NULL default '0',
1375   `offset_vert` float NOT NULL default '0',
1376   `creep_horz` float NOT NULL default '0',
1377   `creep_vert` float NOT NULL default '0',
1378   `units` char(20) NOT NULL default 'POINT',
1379   `creator` char(15) NOT NULL DEFAULT 'Labels',
1380   PRIMARY KEY  (`profile_id`),
1381   UNIQUE KEY `printername` (`printer_name`,`template_id`,`paper_bin`,`creator`)
1382 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1383
1384 --
1385 -- Table structure for table `repeatable_holidays`
1386 --
1387
1388 DROP TABLE IF EXISTS `repeatable_holidays`;
1389 CREATE TABLE `repeatable_holidays` ( -- information for the days the library is closed
1390   `id` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
1391   `branchcode` varchar(10) NOT NULL default '', -- foreign key from the branches table, defines which branch this closing is for
1392   `weekday` smallint(6) default NULL, -- day of the week (0=Sunday, 1=Monday, etc) this closing is repeated on
1393   `day` smallint(6) default NULL, -- day of the month this closing is on
1394   `month` smallint(6) default NULL, -- month this closing is in
1395   `title` varchar(50) NOT NULL default '', -- title of this closing
1396   `description` text NOT NULL, -- description for this closing
1397   PRIMARY KEY  (`id`)
1398 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1399
1400 --
1401 -- Table structure for table `reports_dictionary`
1402 --
1403
1404 DROP TABLE IF EXISTS `reports_dictionary`;
1405 CREATE TABLE reports_dictionary ( -- definitions (or snippets of SQL) stored for use in reports
1406    `id` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
1407    `name` varchar(255) default NULL, -- name for this definition
1408    `description` text, -- description for this definition
1409    `date_created` datetime default NULL, -- date and time this definition was created
1410    `date_modified` datetime default NULL, -- date and time this definition was last modified
1411    `saved_sql` text, -- SQL snippet for us in reports
1412    report_area varchar(6) DEFAULT NULL, -- Koha module this definition is for Circulation, Catalog, Patrons, Acquistions, Accounts)
1413    PRIMARY KEY  (id),
1414    KEY dictionary_area_idx (report_area)
1415 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1416
1417 --
1418 -- Table structure for table `saved_sql`
1419 --
1420
1421 DROP TABLE IF EXISTS `saved_sql`;
1422 CREATE TABLE saved_sql ( -- saved sql reports
1423    `id` int(11) NOT NULL auto_increment, -- unique id and primary key assigned by Koha
1424    `borrowernumber` int(11) default NULL, -- the staff member who created this report (borrowers.borrowernumber)
1425    `date_created` datetime default NULL, -- the date this report was created
1426    `last_modified` datetime default NULL, -- the date this report was last edited
1427    `savedsql` text, -- the SQL for this report
1428    `last_run` datetime default NULL,
1429    `report_name` varchar(255) NOT NULL default '', -- the name of this report
1430    `type` varchar(255) default NULL, -- always 1 for tabular
1431    `notes` text, -- the notes or description given to this report
1432    `cache_expiry` int NOT NULL default 300,
1433    `public` boolean NOT NULL default FALSE,
1434     report_area varchar(6) default NULL,
1435     report_group varchar(80) default NULL,
1436     report_subgroup varchar(80) default NULL,
1437    PRIMARY KEY  (`id`),
1438    KEY sql_area_group_idx (report_group, report_subgroup),
1439    KEY boridx (`borrowernumber`)
1440 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1441
1442
1443 --
1444 -- Table structure for `saved_reports`
1445 --
1446
1447 DROP TABLE IF EXISTS `saved_reports`;
1448 CREATE TABLE saved_reports (
1449    `id` int(11) NOT NULL auto_increment,
1450    `report_id` int(11) default NULL,
1451    `report` longtext,
1452    `date_run` datetime default NULL,
1453    PRIMARY KEY  (`id`)
1454 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1455
1456 --
1457 -- Table structure for table 'search_field'
1458 --
1459
1460 DROP TABLE IF EXISTS search_field;
1461 CREATE TABLE `search_field` (
1462   `id` int(11) NOT NULL AUTO_INCREMENT,
1463   `name` varchar(255) NOT NULL COMMENT 'the name of the field as it will be stored in the search engine',
1464   `label` varchar(255) NOT NULL COMMENT 'the human readable name of the field, for display',
1465   `type` ENUM('string', 'date', 'number', 'boolean', 'sum') NOT NULL COMMENT 'what type of data this holds, relevant when storing it in the search engine',
1466   PRIMARY KEY (`id`),
1467   UNIQUE KEY (`name`)
1468 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1469
1470 --
1471 -- Table structure for table `search_history`
1472 --
1473
1474 DROP TABLE IF EXISTS `search_history`;
1475 CREATE TABLE IF NOT EXISTS `search_history` ( -- patron's opac search history
1476   `id` int(11) NOT NULL auto_increment, -- search history id
1477   `userid` int(11) NOT NULL, -- the patron who performed the search (borrowers.borrowernumber)
1478   `sessionid` varchar(32) NOT NULL, -- a system generated session id
1479   `query_desc` varchar(255) NOT NULL, -- the search that was performed
1480   `query_cgi` text NOT NULL, -- the string to append to the search url to rerun the search
1481   `type` varchar(16) NOT NULL DEFAULT 'biblio', -- search type, must be 'biblio' or 'authority'
1482   `total` int(11) NOT NULL, -- the total of results found
1483   `time` timestamp NOT NULL default CURRENT_TIMESTAMP, -- the date and time the search was run
1484   KEY `userid` (`userid`),
1485   KEY `sessionid` (`sessionid`),
1486   PRIMARY KEY  (`id`)
1487 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Opac search history results';
1488
1489 --
1490 -- Table structure for table 'search_marc_map'
1491 --
1492
1493 DROP TABLE IF EXISTS search_marc_map;
1494 CREATE TABLE `search_marc_map` (
1495   id int(11) NOT NULL AUTO_INCREMENT,
1496   index_name ENUM('biblios','authorities') NOT NULL COMMENT 'what storage index this map is for',
1497   marc_type ENUM('marc21', 'unimarc', 'normarc') NOT NULL COMMENT 'what MARC type this map is for',
1498   marc_field VARCHAR(255) NOT NULL COMMENT 'the MARC specifier for this field',
1499   PRIMARY KEY(`id`),
1500   UNIQUE key(index_name, marc_field, marc_type),
1501   INDEX (`index_name`)
1502 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1503
1504 --
1505 -- Table structure for table 'search_marc_to_field'
1506 --
1507
1508 DROP TABLE IF EXISTS search_marc_to_field;
1509 CREATE TABLE `search_marc_to_field` (
1510   search_marc_map_id int(11) NOT NULL,
1511   search_field_id int(11) NOT NULL,
1512   facet boolean DEFAULT FALSE COMMENT 'true if a facet field should be generated for this',
1513   suggestible boolean DEFAULT FALSE COMMENT 'true if this field can be used to generate suggestions for browse',
1514   sort boolean DEFAULT NULL COMMENT 'true/false creates special sort handling, null doesn''t',
1515   PRIMARY KEY(search_marc_map_id, search_field_id),
1516   FOREIGN KEY(search_marc_map_id) REFERENCES search_marc_map(id) ON DELETE CASCADE ON UPDATE CASCADE,
1517   FOREIGN KEY(search_field_id) REFERENCES search_field(id) ON DELETE CASCADE ON UPDATE CASCADE
1518 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1519
1520 --
1521 -- Table structure for table `serial`
1522 --
1523
1524 DROP TABLE IF EXISTS `serial`;
1525 CREATE TABLE `serial` ( -- issues related to subscriptions
1526   `serialid` int(11) NOT NULL auto_increment, -- unique key for the issue
1527   `biblionumber` varchar(100) NOT NULL default '', -- foreign key for the biblio.biblionumber that this issue is attached to
1528   `subscriptionid` varchar(100) NOT NULL default '', -- foreign key to the subscription.subscriptionid that this issue is part of
1529   `serialseq` varchar(100) NOT NULL default '', -- issue information (volume, number, etc)
1530   `serialseq_x` varchar( 100 ) NULL DEFAULT NULL, -- first part of issue information
1531   `serialseq_y` varchar( 100 ) NULL DEFAULT NULL, -- second part of issue information
1532   `serialseq_z` varchar( 100 ) NULL DEFAULT NULL, -- third part of issue information
1533   `status` tinyint(4) NOT NULL default 0, -- status code for this issue (see manual for full descriptions)
1534   `planneddate` date default NULL, -- date expected
1535   `notes` text, -- notes
1536   `publisheddate` date default NULL, -- date published
1537   publisheddatetext varchar(100) default NULL, -- date published (descriptive)
1538   `claimdate` date default NULL, -- date claimed
1539   claims_count int(11) default 0, -- number of claims made related to this issue
1540   `routingnotes` text, -- notes from the routing list
1541   PRIMARY KEY  (`serialid`)
1542 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1543
1544 --
1545 -- Table structure for table `sessions`
1546 --
1547
1548 DROP TABLE IF EXISTS sessions;
1549 CREATE TABLE sessions (
1550   `id` varchar(32) NOT NULL,
1551   `a_session` mediumtext NOT NULL,
1552   PRIMARY KEY (`id`)
1553 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1554
1555 --
1556 -- Table structure for table `sms_providers`
1557 --
1558
1559 DROP TABLE IF EXISTS sms_providers;
1560 CREATE TABLE `sms_providers` (
1561   `id` int(11) NOT NULL AUTO_INCREMENT,
1562   `name` varchar(255) NOT NULL,
1563   `domain` varchar(255) NOT NULL,
1564   PRIMARY KEY (`id`),
1565   UNIQUE KEY `name` (`name`)
1566 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1567
1568 --
1569 -- Table structure for table `borrowers`
1570 --
1571
1572 DROP TABLE IF EXISTS `borrowers`;
1573 CREATE TABLE `borrowers` ( -- this table includes information about your patrons/borrowers/members
1574   `borrowernumber` int(11) NOT NULL auto_increment, -- primary key, Koha assigned ID number for patrons/borrowers
1575   `cardnumber` varchar(16) default NULL, -- unique key, library assigned ID number for patrons/borrowers
1576   `surname` mediumtext NOT NULL, -- patron/borrower's last name (surname)
1577   `firstname` text, -- patron/borrower's first name
1578   `title` mediumtext, -- patron/borrower's title, for example: Mr. or Mrs.
1579   `othernames` mediumtext, -- any other names associated with the patron/borrower
1580   `initials` text, -- initials for your patron/borrower
1581   `streetnumber` varchar(10) default NULL, -- the house number for your patron/borrower's primary address
1582   `streettype` varchar(50) default NULL, -- the street type (Rd., Blvd, etc) for your patron/borrower's primary address
1583   `address` mediumtext NOT NULL, -- the first address line for your patron/borrower's primary address
1584   `address2` text, -- the second address line for your patron/borrower's primary address
1585   `city` mediumtext NOT NULL, -- the city or town for your patron/borrower's primary address
1586   `state` text default NULL, -- the state or province for your patron/borrower's primary address
1587   `zipcode` varchar(25) default NULL, -- the zip or postal code for your patron/borrower's primary address
1588   `country` text, -- the country for your patron/borrower's primary address
1589   `email` mediumtext, -- the primary email address for your patron/borrower's primary address
1590   `phone` text, -- the primary phone number for your patron/borrower's primary address
1591   `mobile` varchar(50) default NULL, -- the other phone number for your patron/borrower's primary address
1592   `fax` mediumtext, -- the fax number for your patron/borrower's primary address
1593   `emailpro` text, -- the secondary email addres for your patron/borrower's primary address
1594   `phonepro` text, -- the secondary phone number for your patron/borrower's primary address
1595   `B_streetnumber` varchar(10) default NULL, -- the house number for your patron/borrower's alternate address
1596   `B_streettype` varchar(50) default NULL, -- the street type (Rd., Blvd, etc) for your patron/borrower's alternate address
1597   `B_address` varchar(100) default NULL, -- the first address line for your patron/borrower's alternate address
1598   `B_address2` text default NULL, -- the second address line for your patron/borrower's alternate address
1599   `B_city` mediumtext, -- the city or town for your patron/borrower's alternate address
1600   `B_state` text default NULL, -- the state for your patron/borrower's alternate address
1601   `B_zipcode` varchar(25) default NULL, -- the zip or postal code for your patron/borrower's alternate address
1602   `B_country` text, -- the country for your patron/borrower's alternate address
1603   `B_email` text, -- the patron/borrower's alternate email address
1604   `B_phone` mediumtext, -- the patron/borrower's alternate phone number
1605   `dateofbirth` date default NULL, -- the patron/borrower's date of birth (YYYY-MM-DD)
1606   `branchcode` varchar(10) NOT NULL default '', -- foreign key from the branches table, includes the code of the patron/borrower's home branch
1607   `categorycode` varchar(10) NOT NULL default '', -- foreign key from the categories table, includes the code of the patron category
1608   `dateenrolled` date default NULL, -- date the patron was added to Koha (YYYY-MM-DD)
1609   `dateexpiry` date default NULL, -- date the patron/borrower's card is set to expire (YYYY-MM-DD)
1610   `gonenoaddress` tinyint(1) default NULL, -- set to 1 for yes and 0 for no, flag to note that library marked this patron/borrower as having an unconfirmed address
1611   `lost` tinyint(1) default NULL, -- set to 1 for yes and 0 for no, flag to note that library marked this patron/borrower as having lost their card
1612   `debarred` date default NULL, -- until this date the patron can only check-in (no loans, no holds, etc.), is a fine based on days instead of money (YYY-MM-DD)
1613   `debarredcomment` VARCHAR(255) DEFAULT NULL, -- comment on the stop of the patron
1614   `contactname` mediumtext, -- used for children and profesionals to include surname or last name of guarentor or organization name
1615   `contactfirstname` text, -- used for children to include first name of guarentor
1616   `contacttitle` text, -- used for children to include title (Mr., Mrs., etc) of guarentor
1617   `guarantorid` int(11) default NULL, -- borrowernumber used for children or professionals to link them to guarentors or organizations
1618   `borrowernotes` mediumtext, -- a note on the patron/borrower's account that is only visible in the staff client
1619   `relationship` varchar(100) default NULL, -- used for children to include the relationship to their guarentor
1620   `sex` varchar(1) default NULL, -- patron/borrower's gender
1621   `password` varchar(60) default NULL, -- patron/borrower's encrypted password
1622   `flags` int(11) default NULL, -- will include a number associated with the staff member's permissions
1623   `userid` varchar(75) default NULL, -- patron/borrower's opac and/or staff client log in
1624   `opacnote` mediumtext, -- a note on the patron/borrower's account that is visible in the OPAC and staff client
1625   `contactnote` varchar(255) default NULL, -- a note related to the patron/borrower's alternate address
1626   `sort1` varchar(80) default NULL, -- a field that can be used for any information unique to the library
1627   `sort2` varchar(80) default NULL, -- a field that can be used for any information unique to the library
1628   `altcontactfirstname` varchar(255) default NULL, -- first name of alternate contact for the patron/borrower
1629   `altcontactsurname` varchar(255) default NULL, -- surname or last name of the alternate contact for the patron/borrower
1630   `altcontactaddress1` varchar(255) default NULL, -- the first address line for the alternate contact for the patron/borrower
1631   `altcontactaddress2` varchar(255) default NULL, -- the second address line for the alternate contact for the patron/borrower
1632   `altcontactaddress3` varchar(255) default NULL, -- the city for the alternate contact for the patron/borrower
1633   `altcontactstate` text default NULL, -- the state for the alternate contact for the patron/borrower
1634   `altcontactzipcode` varchar(50) default NULL, -- the zipcode for the alternate contact for the patron/borrower
1635   `altcontactcountry` text default NULL, -- the country for the alternate contact for the patron/borrower
1636   `altcontactphone` varchar(50) default NULL, -- the phone number for the alternate contact for the patron/borrower
1637   `smsalertnumber` varchar(50) default NULL, -- the mobile phone number where the patron/borrower would like to receive notices (if SNS turned on)
1638   `sms_provider_id` int(11) DEFAULT NULL, -- the provider of the mobile phone number defined in smsalertnumber
1639   `privacy` integer(11) DEFAULT '1' NOT NULL, -- patron/borrower's privacy settings related to their reading history
1640   `privacy_guarantor_checkouts` tinyint(1) NOT NULL DEFAULT '0', -- controls if relatives can see this patron's checkouts
1641   `checkprevcheckout` varchar(7) NOT NULL default 'inherit', -- produce a warning for this patron if this item has previously been checked out to this patron if 'yes', not if 'no', defer to category setting if 'inherit'.
1642   `updated_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, -- time of last change could be useful for synchronization with external systems (among others)
1643   UNIQUE KEY `cardnumber` (`cardnumber`),
1644   PRIMARY KEY `borrowernumber` (`borrowernumber`),
1645   KEY `categorycode` (`categorycode`),
1646   KEY `branchcode` (`branchcode`),
1647   UNIQUE KEY `userid` (`userid`),
1648   KEY `guarantorid` (`guarantorid`),
1649   KEY `surname_idx` (`surname`(255)),
1650   KEY `firstname_idx` (`firstname`(255)),
1651   KEY `othernames_idx` (`othernames`(255)),
1652   KEY `sms_provider_id` (`sms_provider_id`),
1653   CONSTRAINT `borrowers_ibfk_1` FOREIGN KEY (`categorycode`) REFERENCES `categories` (`categorycode`),
1654   CONSTRAINT `borrowers_ibfk_2` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`),
1655   CONSTRAINT `borrowers_ibfk_3` FOREIGN KEY (`sms_provider_id`) REFERENCES `sms_providers` (`id`) ON UPDATE CASCADE ON DELETE SET NULL
1656 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1657
1658 --
1659 -- Table structure for table `borrower_attributes`
1660 --
1661
1662 DROP TABLE IF EXISTS `borrower_attributes`;
1663 CREATE TABLE `borrower_attributes` ( -- values of custom patron fields known as extended patron attributes linked to patrons/borrowers
1664   `borrowernumber` int(11) NOT NULL, -- foreign key from the borrowers table, defines which patron/borrower has this attribute
1665   `code` varchar(10) NOT NULL, -- foreign key from the borrower_attribute_types table, defines which custom field this value was entered for
1666   `attribute` varchar(255) default NULL, -- custom patron field value
1667   KEY `borrowernumber` (`borrowernumber`),
1668   KEY `code_attribute` (`code`, `attribute`),
1669   CONSTRAINT `borrower_attributes_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`)
1670     ON DELETE CASCADE ON UPDATE CASCADE,
1671   CONSTRAINT `borrower_attributes_ibfk_2` FOREIGN KEY (`code`) REFERENCES `borrower_attribute_types` (`code`)
1672     ON DELETE CASCADE ON UPDATE CASCADE
1673 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1674
1675 --
1676 -- Table structure for table `borrower_debarments`
1677 --
1678
1679 DROP TABLE IF EXISTS `borrower_debarments`;
1680 CREATE TABLE borrower_debarments ( -- tracks restrictions on the patron's record
1681   borrower_debarment_id int(11) NOT NULL AUTO_INCREMENT, -- unique key for the restriction
1682   borrowernumber int(11) NOT NULL, -- foreign key for borrowers.borrowernumber for patron who is restricted
1683   expiration date DEFAULT NULL, -- expiration date of the restriction
1684   `type` enum('SUSPENSION','OVERDUES','MANUAL','DISCHARGE') NOT NULL DEFAULT 'MANUAL', -- type of restriction
1685   `comment` text, -- comments about the restriction
1686   manager_id int(11) DEFAULT NULL, -- foreign key for borrowers.borrowernumber for the librarian managing the restriction
1687   created timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, -- date the restriction was added
1688   updated timestamp NULL DEFAULT NULL, -- date the restriction was updated
1689   PRIMARY KEY (borrower_debarment_id),
1690   KEY borrowernumber (borrowernumber),
1691   CONSTRAINT `borrower_debarments_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`)
1692     ON DELETE CASCADE ON UPDATE CASCADE
1693 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1694
1695 --
1696 -- Table structure for table borrower_sync
1697 --
1698
1699 DROP TABLE IF EXISTS `borrower_sync`;
1700 CREATE TABLE borrower_sync (
1701   borrowersyncid int(11) NOT NULL AUTO_INCREMENT, -- Primary key, unique identifier
1702   borrowernumber int(11) NOT NULL, -- Connects data about synchronisations to a borrower
1703   synctype varchar(32) NOT NULL, -- There could potentially be more than one kind of syncing going on, a text string here can be used to tell them apart. E.g.: The Norwegian national patron database uses 'norwegianpatrondb' in this column
1704   sync tinyint(1) NOT NULL DEFAULT '0', -- A boolean (1/0) for turning syncing off and on for individual borrowers
1705   syncstatus varchar(10) DEFAULT NULL, -- The sync status for any given borrower. Could be text strings like 'new', 'edited', 'synced' etc. The values used here will depend on the actual syncing being done.
1706   lastsync varchar(50) DEFAULT NULL, -- Date of the last successfull sync. The date format might be different depending on the service that is being used, so no special date format is being enforced here.
1707   hashed_pin varchar(64) DEFAULT NULL, -- Perhaps specific to The Norwegian national patron database, this column holds a hashed PIN code
1708   PRIMARY KEY (borrowersyncid),
1709   KEY borrowernumber (borrowernumber),
1710   CONSTRAINT borrower_sync_ibfk_1 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE
1711 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1712
1713 --
1714 -- Table structure for table `issues`
1715 --
1716
1717 DROP TABLE IF EXISTS `issues`;
1718 CREATE TABLE `issues` ( -- information related to check outs or issues
1719   `issue_id` int(11) NOT NULL AUTO_INCREMENT, -- primary key for issues table
1720   `borrowernumber` int(11), -- foreign key, linking this to the borrowers table for the patron this item was checked out to
1721   `itemnumber` int(11), -- foreign key, linking this to the items table for the item that was checked out
1722   `date_due` datetime default NULL, -- datetime the item is due (yyyy-mm-dd hh:mm::ss)
1723   `branchcode` varchar(10) default NULL, -- foreign key, linking to the branches table for the location the item was checked out
1724   `returndate` datetime default NULL, -- date the item was returned, will be NULL until moved to old_issues
1725   `lastreneweddate` datetime default NULL, -- date the item was last renewed
1726   `return` varchar(4) default NULL,
1727   `renewals` tinyint(4) default NULL, -- lists the number of times the item was renewed
1728   `auto_renew` BOOLEAN default FALSE, -- automatic renewal
1729   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this record was last touched
1730   `issuedate` datetime default NULL, -- date the item was checked out or issued
1731   `onsite_checkout` int(1) NOT NULL default 0, -- in house use flag
1732   PRIMARY KEY (`issue_id`),
1733   UNIQUE KEY `itemnumber` (`itemnumber`),
1734   KEY `issuesborridx` (`borrowernumber`),
1735   KEY `itemnumber_idx` (`itemnumber`),
1736   KEY `branchcode_idx` (`branchcode`),
1737   KEY `bordate` (`borrowernumber`,`timestamp`),
1738   CONSTRAINT `issues_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE RESTRICT ON UPDATE CASCADE,
1739   CONSTRAINT `issues_ibfk_2` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE RESTRICT ON UPDATE CASCADE
1740 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1741
1742 --
1743 -- Table structure for table `old_issues`
1744 --
1745
1746 DROP TABLE IF EXISTS `old_issues`;
1747 CREATE TABLE `old_issues` ( -- lists items that were checked out and have been returned
1748   `issue_id` int(11) NOT NULL, -- primary key for issues table
1749   `borrowernumber` int(11) default NULL, -- foreign key, linking this to the borrowers table for the patron this item was checked out to
1750   `itemnumber` int(11) default NULL, -- foreign key, linking this to the items table for the item that was checked out
1751   `date_due` datetime default NULL, -- date the item is due (yyyy-mm-dd)
1752   `branchcode` varchar(10) default NULL, -- foreign key, linking to the branches table for the location the item was checked out
1753   `returndate` datetime default NULL, -- date the item was returned
1754   `lastreneweddate` datetime default NULL, -- date the item was last renewed
1755   `return` varchar(4) default NULL,
1756   `renewals` tinyint(4) default NULL, -- lists the number of times the item was renewed
1757   `auto_renew` BOOLEAN default FALSE, -- automatic renewal
1758   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this record was last touched
1759   `issuedate` datetime default NULL, -- date the item was checked out or issued
1760   `onsite_checkout` int(1) NOT NULL default 0, -- in house use flag
1761   PRIMARY KEY (`issue_id`),
1762   KEY `old_issuesborridx` (`borrowernumber`),
1763   KEY `old_issuesitemidx` (`itemnumber`),
1764   KEY `branchcode_idx` (`branchcode`),
1765   KEY `old_bordate` (`borrowernumber`,`timestamp`),
1766   CONSTRAINT `old_issues_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`)
1767     ON DELETE SET NULL ON UPDATE SET NULL,
1768   CONSTRAINT `old_issues_ibfk_2` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`)
1769     ON DELETE SET NULL ON UPDATE SET NULL
1770 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1771
1772 --
1773 -- Table structure for table `items_last_borrower`
1774 --
1775
1776 CREATE TABLE IF NOT EXISTS `items_last_borrower` (
1777   `id` int(11) NOT NULL AUTO_INCREMENT,
1778   `itemnumber` int(11) NOT NULL,
1779   `borrowernumber` int(11) NOT NULL,
1780   `created_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
1781   PRIMARY KEY (`id`),
1782   UNIQUE KEY `itemnumber` (`itemnumber`),
1783   KEY `borrowernumber` (`borrowernumber`),
1784   CONSTRAINT `items_last_borrower_ibfk_2` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1785   CONSTRAINT `items_last_borrower_ibfk_1` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE
1786 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1787
1788 --
1789 -- Table structure for table `creator_batches`
1790 --
1791
1792 DROP TABLE IF EXISTS `creator_batches`;
1793 SET @saved_cs_client     = @@character_set_client;
1794 SET character_set_client = utf8;
1795 CREATE TABLE `creator_batches` (
1796   `label_id` int(11) NOT NULL AUTO_INCREMENT,
1797   `batch_id` int(10) NOT NULL DEFAULT '1',
1798   `item_number` int(11) DEFAULT NULL,
1799   `borrower_number` int(11) DEFAULT NULL,
1800   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
1801   `branch_code` varchar(10) NOT NULL DEFAULT 'NB',
1802   `creator` char(15) NOT NULL DEFAULT 'Labels',
1803   PRIMARY KEY (`label_id`),
1804   KEY `branch_fk_constraint` (`branch_code`),
1805   KEY `item_fk_constraint` (`item_number`),
1806   KEY `borrower_fk_constraint` (`borrower_number`),
1807   CONSTRAINT `creator_batches_ibfk_1` FOREIGN KEY (`borrower_number`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1808   CONSTRAINT `creator_batches_ibfk_2` FOREIGN KEY (`branch_code`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE,
1809   CONSTRAINT `creator_batches_ibfk_3` FOREIGN KEY (`item_number`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE
1810 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1811
1812 --
1813 -- Table structure for table `opac_news`
1814 --
1815
1816 DROP TABLE IF EXISTS `opac_news`;
1817 CREATE TABLE `opac_news` ( -- data from the news tool
1818   `idnew` int(10) unsigned NOT NULL auto_increment, -- unique identifier for the news article
1819   `branchcode` varchar(10) default NULL, -- branch code users to create branch specific news, NULL is every branch.
1820   `title` varchar(250) NOT NULL default '', -- title of the news article
1821   `new` text NOT NULL, -- the body of your news article
1822   `lang` varchar(25) NOT NULL default '', -- location for the article (koha is the staff client, slip is the circulation receipt and language codes are for the opac)
1823   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP, -- pulibcation date and time
1824   `expirationdate` date default NULL, -- date the article is set to expire or no longer be visible
1825   `number` int(11) default NULL, -- the order in which this article appears in that specific location
1826   `borrowernumber` int(11) default NULL, -- The user who created the news article
1827   PRIMARY KEY  (`idnew`),
1828   CONSTRAINT `borrowernumber_fk` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE,
1829   CONSTRAINT opac_news_branchcode_ibfk FOREIGN KEY (branchcode) REFERENCES branches (branchcode)
1830     ON DELETE CASCADE ON UPDATE CASCADE
1831 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1832
1833 --
1834 -- Table structure for table `patronimage`
1835 --
1836
1837 DROP TABLE IF EXISTS `patronimage`;
1838 CREATE TABLE `patronimage` ( -- information related to patron images
1839   `borrowernumber` int(11) NOT NULL, -- the borrowernumber of the patron this image is attached to (borrowers.borrowernumber)
1840   `mimetype` varchar(15) NOT NULL, -- the format of the image (png, jpg, etc)
1841   `imagefile` mediumblob NOT NULL, -- the image
1842   PRIMARY KEY  (`borrowernumber`),
1843   CONSTRAINT `patronimage_fk1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE
1844 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1845
1846 --
1847 -- Table structure for table `reserves`
1848 --
1849
1850 DROP TABLE IF EXISTS `reserves`;
1851 CREATE TABLE `reserves` ( -- information related to holds/reserves in Koha
1852   `reserve_id` int(11) NOT NULL auto_increment, -- primary key
1853   `borrowernumber` int(11) NOT NULL default 0, -- foreign key from the borrowers table defining which patron this hold is for
1854   `reservedate` date default NULL, -- the date the hold was places
1855   `biblionumber` int(11) NOT NULL default 0, -- foreign key from the biblio table defining which bib record this hold is on
1856   `branchcode` varchar(10) default NULL, -- foreign key from the branches table defining which branch the patron wishes to pick this hold up at
1857   `notificationdate` date default NULL, -- currently unused
1858   `reminderdate` date default NULL, -- currently unused
1859   `cancellationdate` date default NULL, -- the date this hold was cancelled
1860   `reservenotes` mediumtext, -- notes related to this hold
1861   `priority` smallint(6) default NULL, -- where in the queue the patron sits
1862   `found` varchar(1) default NULL, -- a one letter code defining what the status is of the hold is after it has been confirmed
1863   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this hold was last updated
1864   `itemnumber` int(11) default NULL, -- foreign key from the items table defining the specific item the patron has placed on hold or the item this hold was filled with
1865   `waitingdate` date default NULL, -- the date the item was marked as waiting for the patron at the library
1866   `expirationdate` DATE DEFAULT NULL, -- the date the hold expires (usually the date entered by the patron to say they don't need the hold after a certain date)
1867   `lowestPriority` tinyint(1) NOT NULL,
1868   `suspend` BOOLEAN NOT NULL DEFAULT 0,
1869   `suspend_until` DATETIME NULL DEFAULT NULL,
1870   `itemtype` VARCHAR(10) NULL DEFAULT NULL, -- If record level hold, the optional itemtype of the item the patron is requesting
1871   PRIMARY KEY (`reserve_id`),
1872   KEY priorityfoundidx (priority,found),
1873   KEY `borrowernumber` (`borrowernumber`),
1874   KEY `biblionumber` (`biblionumber`),
1875   KEY `itemnumber` (`itemnumber`),
1876   KEY `branchcode` (`branchcode`),
1877   KEY `itemtype` (`itemtype`),
1878   CONSTRAINT `reserves_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1879   CONSTRAINT `reserves_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1880   CONSTRAINT `reserves_ibfk_3` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1881   CONSTRAINT `reserves_ibfk_4` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE,
1882   CONSTRAINT `reserves_ibfk_5` FOREIGN KEY (`itemtype`) REFERENCES `itemtypes` (`itemtype`) ON DELETE CASCADE ON UPDATE CASCADE
1883 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1884
1885 --
1886 -- Table structure for table `old_reserves`
1887 --
1888
1889 DROP TABLE IF EXISTS `old_reserves`;
1890 CREATE TABLE `old_reserves` ( -- this table holds all holds/reserves that have been completed (either filled or cancelled)
1891   `reserve_id` int(11) NOT NULL, -- primary key
1892   `borrowernumber` int(11) default NULL, -- foreign key from the borrowers table defining which patron this hold is for
1893   `reservedate` date default NULL, -- the date the hold was places
1894   `biblionumber` int(11) default NULL, -- foreign key from the biblio table defining which bib record this hold is on
1895   `branchcode` varchar(10) default NULL, -- foreign key from the branches table defining which branch the patron wishes to pick this hold up at
1896   `notificationdate` date default NULL, -- currently unused
1897   `reminderdate` date default NULL, -- currently unused
1898   `cancellationdate` date default NULL, -- the date this hold was cancelled
1899   `reservenotes` mediumtext, -- notes related to this hold
1900   `priority` smallint(6) default NULL, -- where in the queue the patron sits
1901   `found` varchar(1) default NULL, -- a one letter code defining what the status is of the hold is after it has been confirmed
1902   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this hold was last updated
1903   `itemnumber` int(11) default NULL, -- foreign key from the items table defining the specific item the patron has placed on hold or the item this hold was filled with
1904   `waitingdate` date default NULL, -- the date the item was marked as waiting for the patron at the library
1905   `expirationdate` DATE DEFAULT NULL, -- the date the hold expires (usually the date entered by the patron to say they don't need the hold after a certain date)
1906   `lowestPriority` tinyint(1) NOT NULL, -- has this hold been pinned to the lowest priority in the holds queue (1 for yes, 0 for no)
1907   `suspend` BOOLEAN NOT NULL DEFAULT 0, -- in this hold suspended (1 for yes, 0 for no)
1908   `suspend_until` DATETIME NULL DEFAULT NULL, -- the date this hold is suspended until (NULL for infinitely)
1909   `itemtype` VARCHAR(10) NULL DEFAULT NULL, -- If record level hold, the optional itemtype of the item the patron is requesting
1910   PRIMARY KEY (`reserve_id`),
1911   KEY `old_reserves_borrowernumber` (`borrowernumber`),
1912   KEY `old_reserves_biblionumber` (`biblionumber`),
1913   KEY `old_reserves_itemnumber` (`itemnumber`),
1914   KEY `old_reserves_branchcode` (`branchcode`),
1915   KEY `old_reserves_itemtype` (`itemtype`),
1916   CONSTRAINT `old_reserves_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`)
1917     ON DELETE SET NULL ON UPDATE SET NULL,
1918   CONSTRAINT `old_reserves_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`)
1919     ON DELETE SET NULL ON UPDATE SET NULL,
1920   CONSTRAINT `old_reserves_ibfk_3` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`)
1921     ON DELETE SET NULL ON UPDATE SET NULL,
1922   CONSTRAINT `old_reserves_ibfk_4` FOREIGN KEY (`itemtype`) REFERENCES `itemtypes` (`itemtype`)
1923     ON DELETE SET NULL ON UPDATE SET NULL
1924 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1925
1926 --
1927 -- Table structure for table `reviews`
1928 --
1929
1930 DROP TABLE IF EXISTS `reviews`;
1931 CREATE TABLE `reviews` ( -- patron opac comments
1932   `reviewid` int(11) NOT NULL auto_increment, -- unique identifier for this comment
1933   `borrowernumber` int(11) default NULL, -- foreign key from the borrowers table defining which patron left this comment
1934   `biblionumber` int(11) default NULL, -- foreign key from the biblio table defining which bibliographic record this comment is for
1935   `review` text, -- the body of the comment
1936   `approved` tinyint(4) default NULL, -- whether this comment has been approved by a librarian (1 for yes, 0 for no)
1937   `datereviewed` datetime default NULL, -- the date the comment was left
1938   PRIMARY KEY  (`reviewid`),
1939   CONSTRAINT `reviews_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE,
1940   CONSTRAINT `reviews_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE
1941 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1942
1943 --
1944 -- Table structure for table `special_holidays`
1945 --
1946
1947 DROP TABLE IF EXISTS `special_holidays`;
1948 CREATE TABLE `special_holidays` ( -- non repeatable holidays/library closings
1949   `id` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
1950   `branchcode` varchar(10) NOT NULL default '', -- foreign key from the branches table, defines which branch this closing is for
1951   `day` smallint(6) NOT NULL default 0, -- day of the month this closing is on
1952   `month` smallint(6) NOT NULL default 0, -- month this closing is in
1953   `year` smallint(6) NOT NULL default 0, -- year this closing is in
1954   `isexception` smallint(1) NOT NULL default 1, -- is this a holiday exception to a repeatable holiday (1 for yes, 0 for no)
1955   `title` varchar(50) NOT NULL default '', -- title for this closing
1956   `description` text NOT NULL, -- description of this closing
1957   PRIMARY KEY  (`id`)
1958 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1959
1960 --
1961 -- Table structure for table `statistics`
1962 --
1963
1964 DROP TABLE IF EXISTS `statistics`;
1965 CREATE TABLE `statistics` ( -- information related to transactions (circulation and fines) in Koha
1966   `datetime` datetime default NULL, -- date and time of the transaction
1967   `branch` varchar(10) default NULL, -- foreign key, branch where the transaction occurred
1968   `proccode` varchar(4) default NULL, -- type of procedure used when making payments (does not appear in the code)
1969   `value` double(16,4) default NULL, -- monetary value associated with the transaction
1970   `type` varchar(16) default NULL, -- transaction type (locause, issue, return, renew, writeoff, payment, Credit*)
1971   `other` mediumtext, -- used by SIP
1972   `usercode` varchar(10) default NULL, -- unused in Koha
1973   `itemnumber` int(11) default NULL, -- foreign key from the items table, links transaction to a specific item
1974   `itemtype` varchar(10) default NULL, -- foreign key from the itemtypes table, links transaction to a specific item type
1975   `borrowernumber` int(11) default NULL, -- foreign key from the borrowers table, links transaction to a specific borrower
1976   `associatedborrower` int(11) default NULL, -- unused in Koha
1977   `ccode` varchar(10) default NULL, -- foreign key from the items table, links transaction to a specific collection code
1978   KEY `timeidx` (`datetime`),
1979   KEY `branch_idx` (`branch`),
1980   KEY `proccode_idx` (`proccode`),
1981   KEY `type_idx` (`type`),
1982   KEY `usercode_idx` (`usercode`),
1983   KEY `itemnumber_idx` (`itemnumber`),
1984   KEY `itemtype_idx` (`itemtype`),
1985   KEY `borrowernumber_idx` (`borrowernumber`),
1986   KEY `associatedborrower_idx` (`associatedborrower`),
1987   KEY `ccode_idx` (`ccode`)
1988 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
1989
1990 --
1991 -- Table structure for table subscription_frequencies
1992 --
1993
1994 DROP TABLE IF EXISTS subscription_frequencies;
1995 CREATE TABLE subscription_frequencies (
1996     id INTEGER NOT NULL AUTO_INCREMENT,
1997     description TEXT NOT NULL,
1998     displayorder INT DEFAULT NULL,
1999     unit ENUM('day','week','month','year') DEFAULT NULL,
2000     unitsperissue INTEGER NOT NULL DEFAULT '1',
2001     issuesperunit INTEGER NOT NULL DEFAULT '1',
2002     PRIMARY KEY (id)
2003 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2004
2005 --
2006 -- Table structure for table subscription_numberpatterns
2007 --
2008
2009 DROP TABLE IF EXISTS subscription_numberpatterns;
2010 CREATE TABLE subscription_numberpatterns (
2011     id INTEGER NOT NULL AUTO_INCREMENT,
2012     label VARCHAR(255) NOT NULL,
2013     displayorder INTEGER DEFAULT NULL,
2014     description TEXT NOT NULL,
2015     numberingmethod VARCHAR(255) NOT NULL,
2016     label1 VARCHAR(255) DEFAULT NULL,
2017     add1 INTEGER DEFAULT NULL,
2018     every1 INTEGER DEFAULT NULL,
2019     whenmorethan1 INTEGER DEFAULT NULL,
2020     setto1 INTEGER DEFAULT NULL,
2021     numbering1 VARCHAR(255) DEFAULT NULL,
2022     label2 VARCHAR(255) DEFAULT NULL,
2023     add2 INTEGER DEFAULT NULL,
2024     every2 INTEGER DEFAULT NULL,
2025     whenmorethan2 INTEGER DEFAULT NULL,
2026     setto2 INTEGER DEFAULT NULL,
2027     numbering2 VARCHAR(255) DEFAULT NULL,
2028     label3 VARCHAR(255) DEFAULT NULL,
2029     add3 INTEGER DEFAULT NULL,
2030     every3 INTEGER DEFAULT NULL,
2031     whenmorethan3 INTEGER DEFAULT NULL,
2032     setto3 INTEGER DEFAULT NULL,
2033     numbering3 VARCHAR(255) DEFAULT NULL,
2034     PRIMARY KEY (id)
2035 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2036
2037 --
2038 -- Table structure for table `subscription`
2039 --
2040
2041 DROP TABLE IF EXISTS `subscription`;
2042 CREATE TABLE `subscription` ( -- information related to the subscription
2043   `biblionumber` int(11) NOT NULL default 0, -- foreign key for biblio.biblionumber that this subscription is attached to
2044   `subscriptionid` int(11) NOT NULL auto_increment, -- unique key for this subscription
2045   `librarian` varchar(100) default '', -- the librarian's username from borrowers.userid
2046   `startdate` date default NULL, -- start date for this subscription
2047   `aqbooksellerid` int(11) default 0, -- foreign key for aqbooksellers.id to link to the vendor
2048   `cost` int(11) default 0,
2049   `aqbudgetid` int(11) default 0,
2050   `weeklength` int(11) default 0, -- subscription length in weeks (will not be filled in if monthlength or numberlength is set)
2051   `monthlength` int(11) default 0, -- subscription length in weeks (will not be filled in if weeklength or numberlength is set)
2052   `numberlength` int(11) default 0, -- subscription length in weeks (will not be filled in if monthlength or weeklength is set)
2053   `periodicity` integer default null, -- frequency type links to subscription_frequencies.id
2054   countissuesperunit INTEGER NOT NULL DEFAULT 1,
2055   `notes` mediumtext, -- notes
2056   `status` varchar(100) NOT NULL default '',  -- status of this subscription
2057   `lastvalue1` int(11) default NULL,
2058   `innerloop1` int(11) default 0,
2059   `lastvalue2` int(11) default NULL,
2060   `innerloop2` int(11) default 0,
2061   `lastvalue3` int(11) default NULL,
2062   `innerloop3` int(11) default 0,
2063   `firstacquidate` date default NULL, -- first issue received date
2064   `manualhistory` tinyint(1) NOT NULL default 0, -- yes or no to managing the history manually
2065   `irregularity` text, -- any irregularities in the subscription
2066   skip_serialseq BOOLEAN NOT NULL DEFAULT 0,
2067   `letter` varchar(20) default NULL,
2068   `numberpattern` integer default null, -- the numbering pattern used links to subscription_numberpatterns.id
2069   locale VARCHAR(80) DEFAULT NULL, -- for foreign language subscriptions to display months, seasons, etc correctly
2070   `distributedto` text,
2071   `internalnotes` longtext,
2072   `callnumber` text, -- default call number
2073   `location` varchar(80) NULL default '', -- default shelving location (items.location)
2074   `branchcode` varchar(10) NOT NULL default '', -- default branches (items.homebranch)
2075   `lastbranch` varchar(10),
2076   `serialsadditems` tinyint(1) NOT NULL default '0', -- does receiving this serial create an item record
2077   `staffdisplaycount` VARCHAR(10) NULL, -- how many issues to show to the staff
2078   `opacdisplaycount` VARCHAR(10) NULL, -- how many issues to show to the public
2079   `graceperiod` int(11) NOT NULL default '0', -- grace period in days
2080   `enddate` date default NULL, -- subscription end date
2081   `closed` INT(1) NOT NULL DEFAULT 0, -- yes / no if the subscription is closed
2082   `reneweddate` date default NULL, -- date of last renewal for the subscription
2083   PRIMARY KEY  (`subscriptionid`),
2084   CONSTRAINT subscription_ibfk_1 FOREIGN KEY (periodicity) REFERENCES subscription_frequencies (id) ON DELETE SET NULL ON UPDATE CASCADE,
2085   CONSTRAINT subscription_ibfk_2 FOREIGN KEY (numberpattern) REFERENCES subscription_numberpatterns (id) ON DELETE SET NULL ON UPDATE CASCADE
2086 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2087
2088 --
2089 -- Table structure for table `subscriptionhistory`
2090 --
2091
2092 DROP TABLE IF EXISTS `subscriptionhistory`;
2093 CREATE TABLE `subscriptionhistory` (
2094   `biblionumber` int(11) NOT NULL default 0,
2095   `subscriptionid` int(11) NOT NULL default 0,
2096   `histstartdate` date default NULL,
2097   `histenddate` date default NULL,
2098   `missinglist` longtext NOT NULL,
2099   `recievedlist` longtext NOT NULL,
2100   `opacnote` varchar(150) NOT NULL default '',
2101   `librariannote` varchar(150) NOT NULL default '',
2102   PRIMARY KEY  (`subscriptionid`),
2103   KEY `biblionumber` (`biblionumber`)
2104 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2105
2106 --
2107 -- Table structure for table `subscriptionroutinglist`
2108 --
2109
2110 DROP TABLE IF EXISTS `subscriptionroutinglist`;
2111 CREATE TABLE `subscriptionroutinglist` ( -- information related to the routing lists attached to subscriptions
2112   `routingid` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
2113   `borrowernumber` int(11) NOT NULL, -- foreign key from the borrowers table, defines with patron is on the routing list
2114   `ranking` int(11) default NULL, -- where the patron stands in line to receive the serial
2115   `subscriptionid` int(11) NOT NULL, -- foreign key from the subscription table, defines which subscription this routing list is for
2116   PRIMARY KEY  (`routingid`),
2117   UNIQUE (`subscriptionid`, `borrowernumber`),
2118   CONSTRAINT `subscriptionroutinglist_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`)
2119     ON DELETE CASCADE ON UPDATE CASCADE,
2120   CONSTRAINT `subscriptionroutinglist_ibfk_2` FOREIGN KEY (`subscriptionid`) REFERENCES `subscription` (`subscriptionid`)
2121     ON DELETE CASCADE ON UPDATE CASCADE
2122 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2123
2124 --
2125 -- Table structure for table `systempreferences`
2126 --
2127
2128 DROP TABLE IF EXISTS `systempreferences`;
2129 CREATE TABLE `systempreferences` ( -- global system preferences
2130   `variable` varchar(50) NOT NULL default '', -- system preference name
2131   `value` text, -- system preference values
2132   `options` mediumtext, -- options for multiple choice system preferences
2133   `explanation` text, -- descriptive text for the system preference
2134   `type` varchar(20) default NULL, -- type of question this preference asks (multiple choice, plain text, yes or no, etc)
2135   PRIMARY KEY  (`variable`)
2136 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2137
2138 --
2139 -- Table structure for table `tags`
2140 --
2141
2142 DROP TABLE IF EXISTS `tags`;
2143 CREATE TABLE `tags` (
2144   `entry` varchar(255) NOT NULL default '',
2145   `weight` bigint(20) NOT NULL default 0,
2146   PRIMARY KEY  (`entry`)
2147 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2148
2149 --
2150 -- Table structure for table `tags_all`
2151 --
2152
2153 DROP TABLE IF EXISTS `tags_all`;
2154 CREATE TABLE `tags_all` ( -- all of the tags
2155   `tag_id`         int(11) NOT NULL auto_increment, -- unique id and primary key
2156   `borrowernumber` int(11) DEFAULT NULL, -- the patron who added the tag (borrowers.borrowernumber)
2157   `biblionumber`   int(11) NOT NULL, -- the bib record this tag was left on (biblio.biblionumber)
2158   `term`      varchar(255) NOT NULL, -- the tag
2159   `language`       int(4) default NULL, -- the language the tag was left in
2160   `date_created` datetime  NOT NULL, -- the date the tag was added
2161   PRIMARY KEY  (`tag_id`),
2162   KEY `tags_borrowers_fk_1` (`borrowernumber`),
2163   KEY `tags_biblionumber_fk_1` (`biblionumber`),
2164   CONSTRAINT `tags_borrowers_fk_1` FOREIGN KEY (`borrowernumber`)
2165         REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE,
2166   CONSTRAINT `tags_biblionumber_fk_1` FOREIGN KEY (`biblionumber`)
2167         REFERENCES `biblio`     (`biblionumber`)  ON DELETE CASCADE ON UPDATE CASCADE
2168 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2169
2170 --
2171 -- Table structure for table `tags_approval`
2172 --
2173
2174 DROP TABLE IF EXISTS `tags_approval`;
2175 CREATE TABLE `tags_approval` ( -- approved tags
2176   `term`   varchar(255) NOT NULL, -- the tag
2177   `approved`     int(1) NOT NULL default '0', -- whether the tag is approved or not (1=yes, 0=pending, -1=rejected)
2178   `date_approved` datetime       default NULL, -- the date this tag was approved
2179   `approved_by` int(11)          default NULL, -- the librarian who approved the tag (borrowers.borrowernumber)
2180   `weight_total` int(9) NOT NULL default '1', -- the total number of times this tag was used
2181   PRIMARY KEY  (`term`),
2182   KEY `tags_approval_borrowers_fk_1` (`approved_by`),
2183   CONSTRAINT `tags_approval_borrowers_fk_1` FOREIGN KEY (`approved_by`)
2184         REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE
2185 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2186
2187 --
2188 -- Table structure for table `tags_index`
2189 --
2190
2191 DROP TABLE IF EXISTS `tags_index`;
2192 CREATE TABLE `tags_index` ( -- a weighted list of all tags and where they are used
2193   `term`    varchar(255) NOT NULL, -- the tag
2194   `biblionumber` int(11) NOT NULL, -- the bib record this tag was used on (biblio.biblionumber)
2195   `weight`        int(9) NOT NULL default '1', -- the number of times this term was used on this bib record
2196   PRIMARY KEY  (`term`,`biblionumber`),
2197   KEY `tags_index_biblionumber_fk_1` (`biblionumber`),
2198   CONSTRAINT `tags_index_term_fk_1` FOREIGN KEY (`term`)
2199         REFERENCES `tags_approval` (`term`)  ON DELETE CASCADE ON UPDATE CASCADE,
2200   CONSTRAINT `tags_index_biblionumber_fk_1` FOREIGN KEY (`biblionumber`)
2201         REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE
2202 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2203
2204 --
2205 -- Table structure for table `userflags`
2206 --
2207
2208 DROP TABLE IF EXISTS `userflags`;
2209 CREATE TABLE `userflags` (
2210   `bit` int(11) NOT NULL default 0,
2211   `flag` varchar(30) default NULL,
2212   `flagdesc` varchar(255) default NULL,
2213   `defaulton` int(11) default NULL,
2214   PRIMARY KEY  (`bit`)
2215 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2216
2217 --
2218 -- Table structure for table `virtualshelves`
2219 --
2220
2221 DROP TABLE IF EXISTS `virtualshelves`;
2222 CREATE TABLE `virtualshelves` ( -- information about lists (or virtual shelves) 
2223   `shelfnumber` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
2224   `shelfname` varchar(255) default NULL, -- name of the list
2225   `owner` int default NULL, -- foreign key linking to the borrowers table (using borrowernumber) for the creator of this list (changed from varchar(80) to int)
2226   `category` varchar(1) default NULL, -- type of list (private [1], public [2])
2227   `sortfield` varchar(16) default 'title', -- the field this list is sorted on
2228   `lastmodified` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time the list was last modified
2229   `created_on` datetime NOT NULL, -- creation time
2230   `allow_add` tinyint(1) default 0, -- permission for adding entries to list
2231   `allow_delete_own` tinyint(1) default 1, -- permission for deleting entries frm list that you added yourself
2232   `allow_delete_other` tinyint(1) default 0, -- permission for deleting entries from list that another person added
2233   PRIMARY KEY  (`shelfnumber`),
2234   CONSTRAINT `virtualshelves_ibfk_1` FOREIGN KEY (`owner`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE SET NULL -- no cascaded delete, please see HandleDelBorrower in Members.pm
2235 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2236
2237 --
2238 -- Table structure for table `virtualshelfcontents`
2239 --
2240
2241 DROP TABLE IF EXISTS `virtualshelfcontents`;
2242 CREATE TABLE `virtualshelfcontents` ( -- information about the titles in a list (or virtual shelf)
2243   `shelfnumber` int(11) NOT NULL default 0, -- foreign key linking to the virtualshelves table, defines the list that this record has been added to
2244   `biblionumber` int(11) NOT NULL default 0, -- foreign key linking to the biblio table, defines the bib record that has been added to the list
2245   `flags` int(11) default NULL,
2246   `dateadded` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, -- date and time this bib record was added to the list
2247   `borrowernumber` int, -- borrower number that created this list entry (only the first one is saved: no need for use in/as key)
2248   KEY `shelfnumber` (`shelfnumber`),
2249   KEY `biblionumber` (`biblionumber`),
2250   CONSTRAINT `virtualshelfcontents_ibfk_1` FOREIGN KEY (`shelfnumber`) REFERENCES `virtualshelves` (`shelfnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2251   CONSTRAINT `shelfcontents_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2252   CONSTRAINT `shelfcontents_ibfk_3` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE SET NULL -- no cascaded delete, please see HandleDelBorrower in Members.pm
2253 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2254
2255 --
2256 -- Table structure for table `virtualshelfshares`
2257 --
2258
2259 DROP TABLE IF EXISTS `virtualshelfshares`;
2260 CREATE TABLE `virtualshelfshares` ( -- shared private lists
2261   `id` int AUTO_INCREMENT PRIMARY KEY,  -- unique key
2262   `shelfnumber` int NOT NULL,  -- foreign key for virtualshelves
2263   `borrowernumber` int,  -- borrower that accepted access to this list
2264   `invitekey` varchar(10), -- temporary string used in accepting the invitation to access thist list; not-empty means that the invitation has not been accepted yet
2265   `sharedate` datetime,  -- date of invitation or acceptance of invitation
2266   CONSTRAINT `virtualshelfshares_ibfk_1` FOREIGN KEY (`shelfnumber`) REFERENCES `virtualshelves` (`shelfnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2267   CONSTRAINT `virtualshelfshares_ibfk_2` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE SET NULL -- no cascaded delete, please see HandleDelBorrower in Members.pm
2268 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2269
2270 --
2271 -- Table structure for table `z3950servers`
2272 --
2273
2274 DROP TABLE IF EXISTS `z3950servers`;
2275 CREATE TABLE `z3950servers` ( -- connection information for the Z39.50 targets used in cataloging
2276   `id` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
2277   `host` varchar(255) default NULL, -- target's host name
2278   `port` int(11) default NULL, -- port number used to connect to target
2279   `db` varchar(255) default NULL, -- target's database name
2280   `userid` varchar(255) default NULL, -- username needed to log in to target
2281   `password` varchar(255) default NULL, -- password needed to log in to target
2282   `servername` mediumtext NOT NULL, -- name given to the target by the library
2283   `checked` smallint(6) default NULL, -- whether this target is checked by default  (1 for yes, 0 for no)
2284   `rank` int(11) default NULL, -- where this target appears in the list of targets
2285   `syntax` varchar(80) default NULL, -- marc format provided by this target
2286   `timeout` int(11) NOT NULL DEFAULT '0', -- number of seconds before Koha stops trying to access this server
2287   `servertype` enum('zed','sru') NOT NULL default 'zed', -- zed means z39.50 server
2288   `encoding` text default NULL, -- characters encoding provided by this target
2289   `recordtype` enum('authority','biblio') NOT NULL default 'biblio', -- server contains bibliographic or authority records
2290   `sru_options` varchar(255) default NULL, -- options like sru=get, sru_version=1.1; will be passed to the server via ZOOM
2291   `sru_fields` mediumtext default NULL, -- contains the mapping between the Z3950 search fields and the specific SRU server indexes
2292   `add_xslt` mediumtext default NULL, -- zero or more paths to XSLT files to be processed on the search results
2293   PRIMARY KEY  (`id`)
2294 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2295
2296 --
2297 -- Table structure for table `zebraqueue`
2298 --
2299
2300 DROP TABLE IF EXISTS `zebraqueue`;
2301 CREATE TABLE `zebraqueue` (
2302   `id` int(11) NOT NULL auto_increment,
2303   `biblio_auth_number` bigint(20) unsigned NOT NULL default '0',
2304   `operation` char(20) NOT NULL default '',
2305   `server` char(20) NOT NULL default '',
2306   `done` int(11) NOT NULL default '0',
2307   `time` timestamp NOT NULL default CURRENT_TIMESTAMP,
2308   PRIMARY KEY  (`id`),
2309   KEY `zebraqueue_lookup` (`server`, `biblio_auth_number`, `operation`, `done`)
2310 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2311
2312 --
2313 -- Table structure for table `services_throttle`
2314 --
2315
2316 DROP TABLE IF EXISTS `services_throttle`;
2317 CREATE TABLE `services_throttle` (
2318   `service_type` varchar(10) NOT NULL default '',
2319   `service_count` varchar(45) default NULL,
2320   PRIMARY KEY  (`service_type`)
2321 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2322
2323 --
2324 -- Table structure for table `language_subtag_registry`
2325 -- http://www.w3.org/International/articles/language-tags/
2326 -- RFC4646
2327 --
2328
2329 DROP TABLE IF EXISTS language_subtag_registry;
2330 CREATE TABLE language_subtag_registry (
2331         subtag varchar(25),
2332         type varchar(25), -- language-script-region-variant-extension-privateuse
2333         description varchar(25), -- only one of the possible descriptions for ease of reference, see language_descriptions for the complete list
2334         added date,
2335         id int(11) NOT NULL auto_increment,
2336         PRIMARY KEY  (`id`),
2337         KEY `subtag` (`subtag`)
2338 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2339
2340 --
2341 -- Table structure for table `language_rfc4646_to_iso639`
2342 -- TODO: add suppress_scripts
2343 -- this maps three letter codes defined in iso639.2 back to their
2344 -- two letter equivilents in rfc4646 (LOC maintains iso639+)
2345 --
2346
2347 DROP TABLE IF EXISTS language_rfc4646_to_iso639;
2348 CREATE TABLE language_rfc4646_to_iso639 (
2349         rfc4646_subtag varchar(25),
2350         iso639_2_code varchar(25),
2351         id int(11) NOT NULL auto_increment,
2352         PRIMARY KEY  (`id`),
2353         KEY `rfc4646_subtag` (`rfc4646_subtag`)
2354 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2355
2356 --
2357 -- Table structure for table `language_descriptions`
2358 --
2359
2360 DROP TABLE IF EXISTS language_descriptions;
2361 CREATE TABLE language_descriptions (
2362         subtag varchar(25),
2363         type varchar(25),
2364         lang varchar(25),
2365         description varchar(255),
2366         id int(11) NOT NULL auto_increment,
2367         PRIMARY KEY  (`id`),
2368         KEY `lang` (`lang`),
2369         KEY `subtag_type_lang` (`subtag`, `type`, `lang`)
2370 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2371
2372 --
2373 -- Table structure for table `language_script_bidi`
2374 -- bi-directional support, keyed by script subcode
2375 --
2376
2377 DROP TABLE IF EXISTS language_script_bidi;
2378 CREATE TABLE language_script_bidi (
2379         rfc4646_subtag varchar(25), -- script subtag, Arab, Hebr, etc.
2380         bidi varchar(3), -- rtl ltr
2381         KEY `rfc4646_subtag` (`rfc4646_subtag`)
2382 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2383
2384 --
2385 -- Table structure for table `language_script_mapping`
2386 -- TODO: need to map language subtags to script subtags for detection
2387 -- of bidi when script is not specified (like ar, he)
2388 --
2389
2390 DROP TABLE IF EXISTS language_script_mapping;
2391 CREATE TABLE language_script_mapping (
2392         language_subtag varchar(25),
2393         script_subtag varchar(25),
2394         KEY `language_subtag` (`language_subtag`)
2395 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2396
2397 --
2398 -- Table structure for table `permissions`
2399 --
2400
2401 DROP TABLE IF EXISTS `permissions`;
2402 CREATE TABLE `permissions` (
2403   `module_bit` int(11) NOT NULL DEFAULT 0,
2404   `code` varchar(64) NOT NULL DEFAULT '',
2405   `description` varchar(255) DEFAULT NULL,
2406   PRIMARY KEY  (`module_bit`, `code`),
2407   CONSTRAINT `permissions_ibfk_1` FOREIGN KEY (`module_bit`) REFERENCES `userflags` (`bit`)
2408     ON DELETE CASCADE ON UPDATE CASCADE
2409 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2410
2411 --
2412 -- Table structure for table `serialitems`
2413 --
2414
2415 DROP TABLE IF EXISTS `serialitems`;
2416 CREATE TABLE `serialitems` (
2417         `itemnumber` int(11) NOT NULL,
2418         `serialid` int(11) NOT NULL,
2419         UNIQUE KEY `serialitemsidx` (`itemnumber`),
2420         KEY `serialitems_sfk_1` (`serialid`),
2421         CONSTRAINT `serialitems_sfk_1` FOREIGN KEY (`serialid`) REFERENCES `serial` (`serialid`) ON DELETE CASCADE ON UPDATE CASCADE,
2422         CONSTRAINT `serialitems_sfk_2` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE
2423 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2424
2425 --
2426 -- Table structure for table `user_permissions`
2427 --
2428
2429 DROP TABLE IF EXISTS `user_permissions`;
2430 CREATE TABLE `user_permissions` (
2431   `borrowernumber` int(11) NOT NULL DEFAULT 0,
2432   `module_bit` int(11) NOT NULL DEFAULT 0,
2433   `code` varchar(64) DEFAULT NULL,
2434   CONSTRAINT `user_permissions_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`)
2435     ON DELETE CASCADE ON UPDATE CASCADE,
2436   CONSTRAINT `user_permissions_ibfk_2` FOREIGN KEY (`module_bit`, `code`) REFERENCES `permissions` (`module_bit`, `code`)
2437     ON DELETE CASCADE ON UPDATE CASCADE
2438 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2439
2440 --
2441 -- Table structure for table `tmp_holdsqueue`
2442 --
2443
2444 DROP TABLE IF EXISTS `tmp_holdsqueue`;
2445 CREATE TABLE `tmp_holdsqueue` (
2446   `biblionumber` int(11) default NULL,
2447   `itemnumber` int(11) default NULL,
2448   `barcode` varchar(20) default NULL,
2449   `surname` mediumtext NOT NULL,
2450   `firstname` text,
2451   `phone` text,
2452   `borrowernumber` int(11) NOT NULL,
2453   `cardnumber` varchar(16) default NULL,
2454   `reservedate` date default NULL,
2455   `title` mediumtext,
2456   `itemcallnumber` varchar(255) default NULL,
2457   `holdingbranch` varchar(10) default NULL,
2458   `pickbranch` varchar(10) default NULL,
2459   `notes` text,
2460   `item_level_request` tinyint(4) NOT NULL default 0
2461 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2462
2463 --
2464 -- Table structure for table `message_transport_types`
2465 --
2466
2467 DROP TABLE IF EXISTS `message_transport_types`;
2468 CREATE TABLE `message_transport_types` (
2469   `message_transport_type` varchar(20) NOT NULL,
2470   PRIMARY KEY  (`message_transport_type`)
2471 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2472
2473 --
2474 -- Table structure for table `message_queue`
2475 --
2476
2477 DROP TABLE IF EXISTS `message_queue`;
2478 CREATE TABLE `message_queue` (
2479   `message_id` int(11) NOT NULL auto_increment,
2480   `borrowernumber` int(11) default NULL,
2481   `subject` text,
2482   `content` text,
2483   `metadata` text DEFAULT NULL,
2484   `letter_code` varchar(64) DEFAULT NULL,
2485   `message_transport_type` varchar(20) NOT NULL,
2486   `status` enum('sent','pending','failed','deleted') NOT NULL default 'pending',
2487   `time_queued` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
2488   `to_address` mediumtext,
2489   `from_address` mediumtext,
2490   `content_type` text,
2491   PRIMARY KEY `message_id` (`message_id`),
2492   KEY `borrowernumber` (`borrowernumber`),
2493   KEY `message_transport_type` (`message_transport_type`),
2494   CONSTRAINT `messageq_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2495   CONSTRAINT `messageq_ibfk_2` FOREIGN KEY (`message_transport_type`) REFERENCES `message_transport_types` (`message_transport_type`) ON DELETE RESTRICT ON UPDATE CASCADE
2496 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2497
2498 --
2499 -- Table structure for table `letter`
2500 --
2501
2502 DROP TABLE IF EXISTS `letter`;
2503 CREATE TABLE `letter` ( -- table for all notice templates in Koha
2504   `module` varchar(20) NOT NULL default '', -- Koha module that triggers this notice or slip
2505   `code` varchar(20) NOT NULL default '', -- unique identifier for this notice or slip
2506   `branchcode` varchar(10) NOT NULL default '', -- the branch this notice or slip is used at (branches.branchcode)
2507   `name` varchar(100) NOT NULL default '', -- plain text name for this notice or slip
2508   `is_html` tinyint(1) default 0, -- does this notice or slip use HTML (1 for yes, 0 for no)
2509   `title` varchar(200) NOT NULL default '', -- subject line of the notice
2510   `content` text, -- body text for the notice or slip
2511   `message_transport_type` varchar(20) NOT NULL DEFAULT 'email', -- transport type for this notice
2512   PRIMARY KEY  (`module`,`code`, `branchcode`, `message_transport_type`),
2513   CONSTRAINT `message_transport_type_fk` FOREIGN KEY (`message_transport_type`)
2514   REFERENCES `message_transport_types` (`message_transport_type`) ON DELETE CASCADE ON UPDATE CASCADE
2515 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2516
2517 --
2518 -- Table structure for table `overduerules_transport_types`
2519 --
2520
2521 DROP TABLE IF EXISTS `overduerules_transport_types`;
2522 CREATE TABLE overduerules_transport_types(
2523     `id` INT(11) NOT NULL AUTO_INCREMENT,
2524     `letternumber` INT(1) NOT NULL DEFAULT 1,
2525     `message_transport_type` VARCHAR(20) NOT NULL DEFAULT 'email',
2526     `overduerules_id` INT(11) NOT NULL,
2527     PRIMARY KEY (id),
2528     CONSTRAINT overduerules_fk FOREIGN KEY (overduerules_id) REFERENCES overduerules (overduerules_id) ON DELETE CASCADE ON UPDATE CASCADE,
2529     CONSTRAINT mtt_fk FOREIGN KEY (message_transport_type) REFERENCES message_transport_types (message_transport_type) ON DELETE CASCADE ON UPDATE CASCADE
2530 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2531
2532 --
2533 -- Table structure for table `message_attributes`
2534 --
2535
2536 DROP TABLE IF EXISTS `message_attributes`;
2537 CREATE TABLE `message_attributes` (
2538   `message_attribute_id` int(11) NOT NULL auto_increment,
2539   `message_name` varchar(40) NOT NULL default '',
2540   `takes_days` tinyint(1) NOT NULL default '0',
2541   PRIMARY KEY  (`message_attribute_id`),
2542   UNIQUE KEY `message_name` (`message_name`)
2543 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2544
2545 --
2546 -- Table structure for table `message_transports`
2547 --
2548
2549 DROP TABLE IF EXISTS `message_transports`;
2550 CREATE TABLE `message_transports` (
2551   `message_attribute_id` int(11) NOT NULL,
2552   `message_transport_type` varchar(20) NOT NULL,
2553   `is_digest` tinyint(1) NOT NULL default '0',
2554   `letter_module` varchar(20) NOT NULL default '',
2555   `letter_code` varchar(20) NOT NULL default '',
2556   `branchcode` varchar(10) NOT NULL default '',
2557   PRIMARY KEY  (`message_attribute_id`,`message_transport_type`,`is_digest`),
2558   KEY `message_transport_type` (`message_transport_type`),
2559   KEY `letter_module` (`letter_module`,`letter_code`),
2560   CONSTRAINT `message_transports_ibfk_1` FOREIGN KEY (`message_attribute_id`) REFERENCES `message_attributes` (`message_attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
2561   CONSTRAINT `message_transports_ibfk_2` FOREIGN KEY (`message_transport_type`) REFERENCES `message_transport_types` (`message_transport_type`) ON DELETE CASCADE ON UPDATE CASCADE,
2562   CONSTRAINT `message_transports_ibfk_3` FOREIGN KEY (`letter_module`, `letter_code`, `branchcode`) REFERENCES `letter` (`module`, `code`, `branchcode`) ON DELETE CASCADE ON UPDATE CASCADE
2563 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2564
2565 --
2566 -- Table structure for table `borrower_files`
2567 --
2568
2569 DROP TABLE IF EXISTS `borrower_files`;
2570 CREATE TABLE IF NOT EXISTS `borrower_files` ( -- files attached to the patron/borrower record
2571   `file_id` int(11) NOT NULL AUTO_INCREMENT, -- unique key
2572   `borrowernumber` int(11) NOT NULL, -- foreign key linking to the patron via the borrowernumber
2573   `file_name` varchar(255) NOT NULL, -- file name
2574   `file_type` varchar(255) NOT NULL, -- type of file
2575   `file_description` varchar(255) DEFAULT NULL, -- description given to the file
2576   `file_content` longblob NOT NULL, -- the file
2577   `date_uploaded` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, -- date and time the file was added
2578   PRIMARY KEY (`file_id`),
2579   KEY `borrowernumber` (`borrowernumber`),
2580   CONSTRAINT borrower_files_ibfk_1 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE
2581 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2582
2583 --
2584 -- Table structure for table `borrower_message_preferences`
2585 --
2586
2587 DROP TABLE IF EXISTS `borrower_message_preferences`;
2588 CREATE TABLE `borrower_message_preferences` (
2589   `borrower_message_preference_id` int(11) NOT NULL auto_increment,
2590   `borrowernumber` int(11) default NULL,
2591   `categorycode` varchar(10) default NULL,
2592   `message_attribute_id` int(11) default '0',
2593   `days_in_advance` int(11) default '0',
2594   `wants_digest` tinyint(1) NOT NULL default '0',
2595   PRIMARY KEY  (`borrower_message_preference_id`),
2596   KEY `borrowernumber` (`borrowernumber`),
2597   KEY `categorycode` (`categorycode`),
2598   KEY `message_attribute_id` (`message_attribute_id`),
2599   CONSTRAINT `borrower_message_preferences_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2600   CONSTRAINT `borrower_message_preferences_ibfk_2` FOREIGN KEY (`message_attribute_id`) REFERENCES `message_attributes` (`message_attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
2601   CONSTRAINT `borrower_message_preferences_ibfk_3` FOREIGN KEY (`categorycode`) REFERENCES `categories` (`categorycode`) ON DELETE CASCADE ON UPDATE CASCADE
2602 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2603
2604 --
2605 -- Table structure for table `borrower_message_transport_preferences`
2606 --
2607
2608 DROP TABLE IF EXISTS `borrower_message_transport_preferences`;
2609 CREATE TABLE `borrower_message_transport_preferences` (
2610   `borrower_message_preference_id` int(11) NOT NULL default '0',
2611   `message_transport_type` varchar(20) NOT NULL default '0',
2612   PRIMARY KEY  (`borrower_message_preference_id`,`message_transport_type`),
2613   KEY `message_transport_type` (`message_transport_type`),
2614   CONSTRAINT `borrower_message_transport_preferences_ibfk_1` FOREIGN KEY (`borrower_message_preference_id`) REFERENCES `borrower_message_preferences` (`borrower_message_preference_id`) ON DELETE CASCADE ON UPDATE CASCADE,
2615   CONSTRAINT `borrower_message_transport_preferences_ibfk_2` FOREIGN KEY (`message_transport_type`) REFERENCES `message_transport_types` (`message_transport_type`) ON DELETE CASCADE ON UPDATE CASCADE
2616 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2617
2618 --
2619 -- Table structure for the table branch_transfer_limits
2620 --
2621
2622 DROP TABLE IF EXISTS `branch_transfer_limits`;
2623 CREATE TABLE branch_transfer_limits (
2624     limitId int(8) NOT NULL auto_increment,
2625     toBranch varchar(10) NOT NULL,
2626     fromBranch varchar(10) NOT NULL,
2627     itemtype varchar(10) NULL,
2628     ccode varchar(10) NULL,
2629     PRIMARY KEY  (limitId)
2630 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2631
2632 --
2633 -- Table structure for table `item_circulation_alert_preferences`
2634 --
2635
2636 DROP TABLE IF EXISTS `item_circulation_alert_preferences`;
2637 CREATE TABLE `item_circulation_alert_preferences` (
2638   `id` int(11) NOT NULL auto_increment,
2639   `branchcode` varchar(10) NOT NULL,
2640   `categorycode` varchar(10) NOT NULL,
2641   `item_type` varchar(10) NOT NULL,
2642   `notification` varchar(16) NOT NULL,
2643   PRIMARY KEY  (`id`),
2644   KEY `branchcode` (`branchcode`,`categorycode`,`item_type`, `notification`)
2645 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2646
2647 --
2648 -- Table structure for table `messages`
2649 --
2650 DROP TABLE IF EXISTS `messages`;
2651 CREATE TABLE `messages` ( -- circulation messages left via the patron's check out screen
2652   `message_id` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
2653   `borrowernumber` int(11) NOT NULL, -- foreign key linking this message to the borrowers table
2654   `branchcode` varchar(10) default NULL, -- foreign key linking the message to the branches table
2655   `message_type` varchar(1) NOT NULL, -- whether the message is for the librarians (L) or the patron (B)
2656   `message` text NOT NULL, -- the text of the message
2657   `message_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, -- the date and time the message was written
2658   PRIMARY KEY (`message_id`)
2659 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2660
2661 --
2662 -- Table structure for table `accountlines`
2663 --
2664
2665 DROP TABLE IF EXISTS `accountlines`;
2666 CREATE TABLE `accountlines` (
2667   `accountlines_id` int(11) NOT NULL AUTO_INCREMENT,
2668   `issue_id` int(11) NULL DEFAULT NULL,
2669   `borrowernumber` int(11) NOT NULL default 0,
2670   `accountno` smallint(6) NOT NULL default 0,
2671   `itemnumber` int(11) default NULL,
2672   `date` date default NULL,
2673   `amount` decimal(28,6) default NULL,
2674   `description` mediumtext,
2675   `dispute` mediumtext,
2676   `accounttype` varchar(5) default NULL,
2677   `amountoutstanding` decimal(28,6) default NULL,
2678   `lastincrement` decimal(28,6) default NULL,
2679   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
2680   `notify_id` int(11) NOT NULL default 0,
2681   `notify_level` int(2) NOT NULL default 0,
2682   `note` text NULL default NULL,
2683   `manager_id` int(11) NULL,
2684   PRIMARY KEY (`accountlines_id`),
2685   KEY `acctsborridx` (`borrowernumber`),
2686   KEY `timeidx` (`timestamp`),
2687   KEY `itemnumber` (`itemnumber`),
2688   CONSTRAINT `accountlines_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2689   CONSTRAINT `accountlines_ibfk_2` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE SET NULL ON UPDATE SET NULL
2690 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2691
2692 --
2693 -- Table structure for table `accountoffsets`
2694 --
2695
2696 DROP TABLE IF EXISTS `accountoffsets`;
2697 CREATE TABLE `accountoffsets` (
2698   `borrowernumber` int(11) NOT NULL default 0,
2699   `accountno` smallint(6) NOT NULL default 0,
2700   `offsetaccount` smallint(6) NOT NULL default 0,
2701   `offsetamount` decimal(28,6) default NULL,
2702   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
2703   CONSTRAINT `accountoffsets_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE
2704 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2705
2706 --
2707 -- Table structure for table `action_logs`
2708 --
2709
2710 DROP TABLE IF EXISTS `action_logs`;
2711 CREATE TABLE `action_logs` ( -- logs of actions taken in Koha (requires that the logs be turned on)
2712   `action_id` int(11) NOT NULL auto_increment, -- unique identifier for each action
2713   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time the action took place
2714   `user` int(11) NOT NULL default 0, -- the staff member who performed the action (borrowers.borrowernumber)
2715   `module` text, -- the module this action was taken against
2716   `action` text, -- the action (includes things like DELETED, ADDED, MODIFY, etc)
2717   `object` int(11) default NULL, -- the object that the action was taken against (could be a borrowernumber, itemnumber, etc)
2718   `info` text, -- information about the action (usually includes SQL statement)
2719   `interface` VARCHAR(30) DEFAULT NULL, -- the context this action was taken in
2720   PRIMARY KEY (`action_id`),
2721   KEY `timestamp_idx` (`timestamp`),
2722   KEY `user_idx` (`user`),
2723   KEY `module_idx` (`module`(255)),
2724   KEY `action_idx` (`action`(255)),
2725   KEY `object_idx` (`object`),
2726   KEY `info_idx` (`info`(255)),
2727   KEY `interface` (`interface`)
2728 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2729
2730 --
2731 -- Table structure for table `alert`
2732 --
2733
2734 DROP TABLE IF EXISTS `alert`;
2735 CREATE TABLE `alert` (
2736   `alertid` int(11) NOT NULL auto_increment,
2737   `borrowernumber` int(11) NOT NULL default 0,
2738   `type` varchar(10) NOT NULL default '',
2739   `externalid` varchar(20) NOT NULL default '',
2740   PRIMARY KEY  (`alertid`),
2741   KEY `borrowernumber` (`borrowernumber`),
2742   KEY `type` (`type`,`externalid`)
2743 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2744
2745 --
2746 -- Table structure for table `aqbooksellers`
2747 --
2748
2749 DROP TABLE IF EXISTS `aqbooksellers`;
2750 CREATE TABLE `aqbooksellers` ( -- information about the vendors listed in acquisitions
2751   `id` int(11) NOT NULL auto_increment, -- primary key and unique identifier assigned by Koha
2752   `name` mediumtext NOT NULL, -- vendor name
2753   `address1` mediumtext, -- first line of vendor physical address
2754   `address2` mediumtext, -- second line of vendor physical address
2755   `address3` mediumtext, -- third line of vendor physical address
2756   `address4` mediumtext, -- fourth line of vendor physical address
2757   `phone` varchar(30) default NULL, -- vendor phone number
2758   `accountnumber` mediumtext, -- unused in Koha
2759   `othersupplier` mediumtext,  -- unused in Koha
2760   `currency` varchar(10) NOT NULL default '', -- unused in Koha
2761   `booksellerfax` mediumtext, -- vendor fax number
2762   `notes` mediumtext, -- order notes
2763   `bookselleremail` mediumtext, -- vendor email
2764   `booksellerurl` mediumtext, -- unused in Koha
2765   `postal` mediumtext, -- vendor postal address (all lines)
2766   `url` varchar(255) default NULL, -- vendor web address
2767   `active` tinyint(4) default NULL, -- is this vendor active (1 for yes, 0 for no)
2768   `listprice` varchar(10) default NULL, -- currency code for list prices
2769   `invoiceprice` varchar(10) default NULL, -- currency code for invoice prices
2770   `gstreg` tinyint(4) default NULL, -- is your library charged tax (1 for yes, 0 for no)
2771   `listincgst` tinyint(4) default NULL, -- is tax included in list prices (1 for yes, 0 for no)
2772   `invoiceincgst` tinyint(4) default NULL, -- is tax included in invoice prices (1 for yes, 0 for no)
2773   `gstrate` decimal(6,4) default NULL, -- the tax rate the library is charged
2774   `discount` float(6,4) default NULL, -- discount offered on all items ordered from this vendor
2775   `fax` varchar(50) default NULL, -- vendor fax number
2776   deliverytime int(11) default NULL, -- vendor delivery time
2777   PRIMARY KEY  (`id`),
2778   KEY `listprice` (`listprice`),
2779   KEY `invoiceprice` (`invoiceprice`),
2780   KEY `name` (`name`(255)),
2781   CONSTRAINT `aqbooksellers_ibfk_1` FOREIGN KEY (`listprice`) REFERENCES `currency` (`currency`) ON DELETE CASCADE ON UPDATE CASCADE,
2782   CONSTRAINT `aqbooksellers_ibfk_2` FOREIGN KEY (`invoiceprice`) REFERENCES `currency` (`currency`) ON DELETE CASCADE ON UPDATE CASCADE
2783 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2784
2785 --
2786 -- Table structure for table `aqbasketgroups`
2787 --
2788
2789 DROP TABLE IF EXISTS `aqbasketgroups`;
2790 CREATE TABLE `aqbasketgroups` (
2791   `id` int(11) NOT NULL auto_increment,
2792   `name` varchar(50) default NULL,
2793   `closed` tinyint(1) default NULL,
2794   `booksellerid` int(11) NOT NULL,
2795   `deliveryplace` varchar(10) default NULL,
2796   `freedeliveryplace` text default NULL,
2797   `deliverycomment` varchar(255) default NULL,
2798   `billingplace` varchar(10) default NULL,
2799   PRIMARY KEY  (`id`),
2800   KEY `booksellerid` (`booksellerid`),
2801   CONSTRAINT `aqbasketgroups_ibfk_1` FOREIGN KEY (`booksellerid`) REFERENCES `aqbooksellers` (`id`) ON UPDATE CASCADE ON DELETE CASCADE
2802 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2803
2804 --
2805 -- Table structure for table `aqbudgets`
2806 --
2807
2808 DROP TABLE IF EXISTS `aqbudgets`;
2809 CREATE TABLE `aqbudgets` ( -- information related to Funds
2810   `budget_id` int(11) NOT NULL auto_increment, -- primary key and unique number assigned to each fund by Koha
2811   `budget_parent_id` int(11) default NULL, -- if this fund is a child of another this will include the parent id (aqbudgets.budget_id)
2812   `budget_code` varchar(30) default NULL, -- code assigned to the fund by the user
2813   `budget_name` varchar(80) default NULL, -- name assigned to the fund by the user
2814   `budget_branchcode` varchar(10) default NULL, -- branch that this fund belongs to (branches.branchcode)
2815   `budget_amount` decimal(28,6) NULL default '0.00', -- total amount for this fund
2816   `budget_encumb` decimal(28,6) NULL default '0.00', -- not used in the code
2817   `budget_expend` decimal(28,6) NULL default '0.00', -- not used in the code
2818   `budget_notes` mediumtext, -- notes related to this fund
2819   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this fund was last touched (created or modified)
2820   `budget_period_id` int(11) default NULL, -- id of the budget that this fund belongs to (aqbudgetperiods.budget_period_id)
2821   `sort1_authcat` varchar(80) default NULL, -- statistical category for this fund
2822   `sort2_authcat` varchar(80) default NULL, -- second statistical category for this fund
2823   `budget_owner_id` int(11) default NULL, -- borrowernumber of the person who owns this fund (borrowers.borrowernumber)
2824   `budget_permission` int(1) default '0', -- level of permission for this fund (used only by the owner, only by the library, or anyone)
2825   PRIMARY KEY  (`budget_id`),
2826   KEY `budget_parent_id` (`budget_parent_id`),
2827   KEY `budget_code` (`budget_code`),
2828   KEY `budget_branchcode` (`budget_branchcode`),
2829   KEY `budget_period_id` (`budget_period_id`),
2830   KEY `budget_owner_id` (`budget_owner_id`)
2831 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2832
2833 --
2834 -- Table structure for table aqbudgetborrowers
2835 --
2836
2837 DROP TABLE IF EXISTS aqbudgetborrowers;
2838 CREATE TABLE aqbudgetborrowers (
2839   budget_id int(11) NOT NULL,
2840   borrowernumber int(11) NOT NULL,
2841   PRIMARY KEY (budget_id, borrowernumber),
2842   CONSTRAINT aqbudgetborrowers_ibfk_1 FOREIGN KEY (budget_id)
2843     REFERENCES aqbudgets (budget_id)
2844     ON DELETE CASCADE ON UPDATE CASCADE,
2845   CONSTRAINT aqbudgetborrowers_ibfk_2 FOREIGN KEY (borrowernumber)
2846     REFERENCES borrowers (borrowernumber)
2847     ON DELETE CASCADE ON UPDATE CASCADE
2848 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2849
2850 --
2851 -- Table structure for table `aqbudgetperiods`
2852 --
2853
2854
2855 DROP TABLE IF EXISTS `aqbudgetperiods`;
2856 CREATE TABLE `aqbudgetperiods` ( -- information related to Budgets
2857   `budget_period_id` int(11) NOT NULL auto_increment, -- primary key and unique number assigned by Koha
2858   `budget_period_startdate` date NOT NULL, -- date when the budget starts
2859   `budget_period_enddate` date NOT NULL, -- date when the budget ends
2860   `budget_period_active` tinyint(1) default '0', -- whether this budget is active or not (1 for yes, 0 for no)
2861   `budget_period_description` mediumtext, -- description assigned to this budget
2862   `budget_period_total` decimal(28,6), -- total amount available in this budget
2863   `budget_period_locked` tinyint(1) default NULL, -- whether this budget is locked or not (1 for yes, 0 for no)
2864   `sort1_authcat` varchar(10) default NULL, -- statistical category for this budget
2865   `sort2_authcat` varchar(10) default NULL, -- second statistical category for this budget
2866   PRIMARY KEY  (`budget_period_id`)
2867 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2868
2869 --
2870 -- Table structure for table `aqbudgets_planning`
2871 --
2872
2873 DROP TABLE IF EXISTS `aqbudgets_planning`;
2874 CREATE TABLE `aqbudgets_planning` (
2875   `plan_id` int(11) NOT NULL auto_increment,
2876   `budget_id` int(11) NOT NULL,
2877   `budget_period_id` int(11) NOT NULL,
2878   `estimated_amount` decimal(28,6) default NULL,
2879   `authcat` varchar(30) NOT NULL,
2880   `authvalue` varchar(30) NOT NULL,
2881   `display` tinyint(1) DEFAULT 1,
2882   PRIMARY KEY  (`plan_id`),
2883   KEY `budget_period_id` (`budget_period_id`),
2884   CONSTRAINT `aqbudgets_planning_ifbk_1` FOREIGN KEY (`budget_id`) REFERENCES `aqbudgets` (`budget_id`) ON DELETE CASCADE ON UPDATE CASCADE
2885 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2886
2887 --
2888 -- Table structure for table 'aqcontacts'
2889 --
2890
2891 DROP TABLE IF EXISTS aqcontacts;
2892 CREATE TABLE aqcontacts (
2893   id int(11) NOT NULL auto_increment, -- primary key and unique number assigned by Koha
2894   name varchar(100) default NULL, -- name of contact at vendor
2895   position varchar(100) default NULL, -- contact person's position
2896   phone varchar(100) default NULL, -- contact's phone number
2897   altphone varchar(100) default NULL, -- contact's alternate phone number
2898   fax varchar(100) default NULL,  -- contact's fax number
2899   email varchar(100) default NULL, -- contact's email address
2900   notes mediumtext, -- notes related to the contact
2901   claimacquisition BOOLEAN NOT NULL DEFAULT 0, -- should this contact receive acquisitions claims
2902   claimissues BOOLEAN NOT NULL DEFAULT 0, -- should this contact receive serial claims
2903   acqprimary BOOLEAN NOT NULL DEFAULT 0, -- is this the primary contact for acquisitions messages
2904   serialsprimary BOOLEAN NOT NULL DEFAULT 0, -- is this the primary contact for serials messages
2905   booksellerid int(11) not NULL,
2906   PRIMARY KEY  (id),
2907   CONSTRAINT booksellerid_aqcontacts_fk FOREIGN KEY (booksellerid)
2908        REFERENCES aqbooksellers (id) ON DELETE CASCADE ON UPDATE CASCADE
2909 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1;
2910
2911 --
2912 -- Table structure for table 'aqcontract'
2913 --
2914
2915 DROP TABLE IF EXISTS `aqcontract`;
2916 CREATE TABLE `aqcontract` (
2917   `contractnumber` int(11) NOT NULL auto_increment,
2918   `contractstartdate` date default NULL,
2919   `contractenddate` date default NULL,
2920   `contractname` varchar(50) default NULL,
2921   `contractdescription` mediumtext,
2922   `booksellerid` int(11) not NULL,
2923   PRIMARY KEY  (`contractnumber`),
2924   CONSTRAINT `booksellerid_fk1` FOREIGN KEY (`booksellerid`)
2925        REFERENCES `aqbooksellers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
2926 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
2927
2928 --
2929 -- Table structure for table `aqbasket`
2930 --
2931
2932 DROP TABLE IF EXISTS `aqbasket`;
2933 CREATE TABLE `aqbasket` ( -- stores data about baskets in acquisitions
2934   `basketno` int(11) NOT NULL auto_increment, -- primary key, Koha defined number
2935   `basketname` varchar(50) default NULL, -- name given to the basket at creation
2936   `note` mediumtext, -- the internal note added at basket creation
2937   `booksellernote` mediumtext, -- the vendor note added at basket creation
2938   `contractnumber` int(11), -- links this basket to the aqcontract table (aqcontract.contractnumber)
2939   `creationdate` date default NULL, -- the date the basket was created
2940   `closedate` date default NULL, -- the date the basket was closed
2941   `booksellerid` int(11) NOT NULL default 1, -- the Koha assigned ID for the vendor (aqbooksellers.id)
2942   `authorisedby` varchar(10) default NULL, -- the borrowernumber of the person who created the basket
2943   `booksellerinvoicenumber` mediumtext, -- appears to always be NULL
2944   `basketgroupid` int(11), -- links this basket to its group (aqbasketgroups.id)
2945   `deliveryplace` varchar(10) default NULL, -- basket delivery place
2946   `billingplace` varchar(10) default NULL, -- basket billing place
2947   branch varchar(10) default NULL, -- basket branch
2948   is_standing TINYINT(1) NOT NULL DEFAULT 0, -- orders in this basket are standing
2949   PRIMARY KEY  (`basketno`),
2950   KEY `booksellerid` (`booksellerid`),
2951   KEY `basketgroupid` (`basketgroupid`),
2952   KEY `contractnumber` (`contractnumber`),
2953   KEY `authorisedby` (`authorisedby`),
2954   CONSTRAINT `aqbasket_ibfk_1` FOREIGN KEY (`booksellerid`) REFERENCES `aqbooksellers` (`id`) ON UPDATE CASCADE,
2955   CONSTRAINT `aqbasket_ibfk_2` FOREIGN KEY (`contractnumber`) REFERENCES `aqcontract` (`contractnumber`),
2956   CONSTRAINT `aqbasket_ibfk_3` FOREIGN KEY (`basketgroupid`) REFERENCES `aqbasketgroups` (`id`) ON UPDATE CASCADE,
2957   CONSTRAINT aqbasket_ibfk_4 FOREIGN KEY (branch) REFERENCES branches (branchcode) ON UPDATE CASCADE ON DELETE SET NULL
2958 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2959
2960 --
2961 -- Table structure for table aqbasketusers
2962 --
2963
2964 DROP TABLE IF EXISTS aqbasketusers;
2965 CREATE TABLE aqbasketusers (
2966   basketno int(11) NOT NULL,
2967   borrowernumber int(11) NOT NULL,
2968   PRIMARY KEY (basketno,borrowernumber),
2969   CONSTRAINT aqbasketusers_ibfk_1 FOREIGN KEY (basketno) REFERENCES aqbasket (basketno) ON UPDATE CASCADE ON DELETE CASCADE,
2970   CONSTRAINT aqbasketusers_ibfk_2 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON UPDATE CASCADE ON DELETE CASCADE
2971 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
2972
2973 --
2974 -- Table structure for table `suggestions`
2975 --
2976
2977 DROP TABLE IF EXISTS `suggestions`;
2978 CREATE TABLE `suggestions` ( -- purchase suggestions
2979   `suggestionid` int(8) NOT NULL auto_increment, -- unique identifier assigned automatically by Koha
2980   `suggestedby` int(11) NOT NULL default 0, -- borrowernumber for the person making the suggestion, foreign key linking to the borrowers table
2981   `suggesteddate` date NOT NULL, -- date the suggestion was submitted
2982   `managedby` int(11) default NULL, -- borrowernumber for the librarian managing the suggestion, foreign key linking to the borrowers table
2983   `manageddate` date default NULL, -- date the suggestion was updated
2984    acceptedby INT(11) default NULL, -- borrowernumber for the librarian who accepted the suggestion, foreign key linking to the borrowers table
2985    accepteddate date default NULL, -- date the suggestion was marked as accepted
2986    rejectedby INT(11) default NULL, -- borrowernumber for the librarian who rejected the suggestion, foreign key linking to the borrowers table
2987    rejecteddate date default NULL, -- date the suggestion was marked as rejected
2988   `STATUS` varchar(10) NOT NULL default '', -- suggestion status (ASKED, CHECKED, ACCEPTED, or REJECTED)
2989   `note` mediumtext, -- note entered on the suggestion
2990   `author` varchar(80) default NULL, -- author of the suggested item
2991   `title` varchar(255) default NULL, -- title of the suggested item
2992   `copyrightdate` smallint(6) default NULL, -- copyright date of the suggested item
2993   `publishercode` varchar(255) default NULL, -- publisher of the suggested item
2994   `date` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,  -- date and time the suggestion was updated
2995   `volumedesc` varchar(255) default NULL,
2996   `publicationyear` smallint(6) default 0,
2997   `place` varchar(255) default NULL, -- publication place of the suggested item
2998   `isbn` varchar(30) default NULL, -- isbn of the suggested item
2999   `biblionumber` int(11) default NULL, -- foreign key linking the suggestion to the biblio table after the suggestion has been ordered
3000   `reason` text, -- reason for accepting or rejecting the suggestion
3001   `patronreason` text, -- reason for making the suggestion
3002    budgetid INT(11), -- foreign key linking the suggested budget to the aqbudgets table
3003    branchcode VARCHAR(10) default NULL, -- foreign key linking the suggested branch to the branches table
3004    collectiontitle text default NULL, -- collection name for the suggested item
3005    itemtype VARCHAR(30) default NULL, -- suggested item type
3006    quantity SMALLINT(6) default NULL, -- suggested quantity to be purchased
3007    currency VARCHAR(10) default NULL, -- suggested currency for the suggested price
3008    price DECIMAL(28,6) default NULL, -- suggested price
3009    total DECIMAL(28,6) default NULL, -- suggested total cost (price*quantity updated for currency)
3010   PRIMARY KEY  (`suggestionid`),
3011   KEY `suggestedby` (`suggestedby`),
3012   KEY `managedby` (`managedby`),
3013   KEY `status` (`STATUS`),
3014   KEY `biblionumber` (`biblionumber`),
3015   KEY `branchcode` (`branchcode`),
3016   CONSTRAINT `suggestions_budget_id_fk` FOREIGN KEY (`budgetid`) REFERENCES `aqbudgets` (`budget_id`) ON DELETE SET NULL ON UPDATE CASCADE
3017 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3018
3019 --
3020 -- Table structure for table vendor_edi_accounts
3021 --
3022
3023 DROP TABLE IF EXISTS vendor_edi_accounts;
3024 CREATE TABLE IF NOT EXISTS vendor_edi_accounts (
3025   id INT(11) NOT NULL auto_increment,
3026   description TEXT NOT NULL,
3027   host VARCHAR(40),
3028   username VARCHAR(40),
3029   password VARCHAR(40),
3030   last_activity DATE,
3031   vendor_id INT(11) REFERENCES aqbooksellers( id ),
3032   download_directory TEXT,
3033   upload_directory TEXT,
3034   san VARCHAR(20),
3035   id_code_qualifier VARCHAR(3) default '14',
3036   transport VARCHAR(6) default 'FTP',
3037   quotes_enabled TINYINT(1) not null default 0,
3038   invoices_enabled TINYINT(1) not null default 0,
3039   orders_enabled TINYINT(1) not null default 0,
3040   responses_enabled TINYINT(1) not null default 0,
3041   auto_orders TINYINT(1) not null default 0,
3042   shipment_budget INTEGER(11) REFERENCES aqbudgets( budget_id ),
3043   plugin varchar(256) NOT NULL DEFAULT "",
3044   PRIMARY KEY  (id),
3045   KEY vendorid (vendor_id),
3046   KEY shipmentbudget (shipment_budget),
3047   CONSTRAINT vfk_vendor_id FOREIGN KEY ( vendor_id ) REFERENCES aqbooksellers ( id ),
3048   CONSTRAINT vfk_shipment_budget FOREIGN KEY ( shipment_budget ) REFERENCES aqbudgets ( budget_id )
3049 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3050
3051 --
3052 -- Table structure for table edifact_messages
3053 --
3054
3055 DROP TABLE IF EXISTS edifact_messages;
3056 CREATE TABLE IF NOT EXISTS edifact_messages (
3057   id INT(11) NOT NULL auto_increment,
3058   message_type VARCHAR(10) NOT NULL,
3059   transfer_date DATE,
3060   vendor_id INT(11) REFERENCES aqbooksellers( id ),
3061   edi_acct  INTEGER REFERENCES vendor_edi_accounts( id ),
3062   status TEXT,
3063   basketno INT(11) REFERENCES aqbasket( basketno),
3064   raw_msg MEDIUMTEXT,
3065   filename TEXT,
3066   deleted BOOLEAN NOT NULL DEFAULT 0,
3067   PRIMARY KEY  (id),
3068   KEY vendorid ( vendor_id),
3069   KEY ediacct (edi_acct),
3070   KEY basketno ( basketno),
3071   CONSTRAINT emfk_vendor FOREIGN KEY ( vendor_id ) REFERENCES aqbooksellers ( id ) ON DELETE CASCADE ON UPDATE CASCADE,
3072   CONSTRAINT emfk_edi_acct FOREIGN KEY ( edi_acct ) REFERENCES vendor_edi_accounts ( id ) ON DELETE CASCADE ON UPDATE CASCADE,
3073   CONSTRAINT emfk_basketno FOREIGN KEY ( basketno ) REFERENCES aqbasket ( basketno ) ON DELETE CASCADE ON UPDATE CASCADE
3074 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3075
3076 --
3077 -- Table structure for table aqinvoices
3078 --
3079
3080 DROP TABLE IF EXISTS aqinvoices;
3081 CREATE TABLE aqinvoices (
3082   invoiceid int(11) NOT NULL AUTO_INCREMENT,    -- ID of the invoice, primary key
3083   invoicenumber mediumtext NOT NULL,    -- Name of invoice
3084   booksellerid int(11) NOT NULL,    -- foreign key to aqbooksellers
3085   shipmentdate date default NULL,   -- date of shipment
3086   billingdate date default NULL,    -- date of billing
3087   closedate date default NULL,  -- invoice close date, NULL means the invoice is open
3088   shipmentcost decimal(28,6) default NULL,  -- shipment cost
3089   shipmentcost_budgetid int(11) default NULL,   -- foreign key to aqbudgets, link the shipment cost to a budget
3090   message_id int(11) default NULL, -- foreign key to edifact invoice message
3091   PRIMARY KEY (invoiceid),
3092   CONSTRAINT aqinvoices_fk_aqbooksellerid FOREIGN KEY (booksellerid) REFERENCES aqbooksellers (id) ON DELETE CASCADE ON UPDATE CASCADE,
3093   CONSTRAINT edifact_msg_fk FOREIGN KEY ( message_id ) REFERENCES edifact_messages ( id ) ON DELETE SET NULL,
3094   CONSTRAINT aqinvoices_fk_shipmentcost_budgetid FOREIGN KEY (shipmentcost_budgetid) REFERENCES aqbudgets (budget_id) ON DELETE SET NULL ON UPDATE CASCADE
3095 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3096
3097 --
3098 -- Table structure for table `aqorders`
3099 --
3100
3101 DROP TABLE IF EXISTS `aqorders`;
3102 CREATE TABLE `aqorders` ( -- information related to the basket line items
3103   `ordernumber` int(11) NOT NULL auto_increment, -- primary key and unique identifier assigned by Koha to each line
3104   `biblionumber` int(11) default NULL, -- links the order to the biblio being ordered (biblio.biblionumber)
3105   `entrydate` date default NULL, -- the date the bib was added to the basket
3106   `quantity` smallint(6) default NULL, -- the quantity ordered
3107   `currency` varchar(10) default NULL, -- the currency used for the purchase
3108   `listprice` decimal(28,6) default NULL, -- the vendor price for this line item
3109   `datereceived` date default NULL, -- the date this order was received
3110   invoiceid int(11) default NULL, -- id of invoice
3111   `freight` decimal(28,6) default NULL, -- shipping costs (not used)
3112   `unitprice` decimal(28,6) default NULL, -- the actual cost entered when receiving this line item
3113   `quantityreceived` smallint(6) NOT NULL default 0, -- the quantity that have been received so far
3114   `datecancellationprinted` date default NULL, -- the date the line item was deleted
3115   `cancellationreason` text default NULL, -- reason of cancellation
3116   `order_internalnote` mediumtext, -- notes related to this order line, made for staff
3117   `order_vendornote` mediumtext, -- notes related to this order line, made for vendor
3118   `purchaseordernumber` mediumtext, -- not used? always NULL
3119   `basketno` int(11) default NULL, -- links this order line to a specific basket (aqbasket.basketno)
3120   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this order line was last modified
3121   `rrp` decimal(13,2) default NULL, -- the replacement cost for this line item
3122   `ecost` decimal(13,2) default NULL, -- the estimated cost for this line item
3123   `gstrate` decimal(6,4) default NULL, -- the tax rate for this line item
3124   `discount` float(6,4) default NULL, -- the discount for this line item
3125   `budget_id` int(11) NOT NULL, -- the fund this order goes against (aqbudgets.budget_id)
3126   `budgetdate` date default NULL, -- not used? always NULL
3127   `sort1` varchar(80) default NULL, -- statistical field
3128   `sort2` varchar(80) default NULL, -- second statistical field
3129   `sort1_authcat` varchar(10) default NULL,
3130   `sort2_authcat` varchar(10) default NULL,
3131   `uncertainprice` tinyint(1), -- was this price uncertain (1 for yes, 0 for no)
3132   `claims_count` int(11) default 0, -- count of claim letters generated
3133   `claimed_date` date default NULL, -- last date a claim was generated
3134   `subscriptionid` int(11) default NULL, -- links this order line to a subscription (subscription.subscriptionid)
3135   parent_ordernumber int(11) default NULL, -- ordernumber of parent order line, or same as ordernumber if no parent
3136   `orderstatus` varchar(16) default 'new', -- the current status for this line item. Can be 'new', 'ordered', 'partial', 'complete' or 'cancelled'
3137   line_item_id varchar(35) default NULL, -- Supplier's article id for Edifact orderline
3138   suppliers_reference_number varchar(35) default NULL, -- Suppliers unique edifact quote ref
3139   suppliers_reference_qualifier varchar(3) default NULL, -- Type of number above usually 'QLI'
3140   `suppliers_report` text COLLATE utf8_unicode_ci, -- reports received from suppliers
3141   PRIMARY KEY  (`ordernumber`),
3142   KEY `basketno` (`basketno`),
3143   KEY `biblionumber` (`biblionumber`),
3144   KEY `budget_id` (`budget_id`),
3145   KEY `parent_ordernumber` (`parent_ordernumber`),
3146   KEY `orderstatus` (`orderstatus`),
3147   CONSTRAINT `aqorders_budget_id_fk` FOREIGN KEY (`budget_id`) REFERENCES `aqbudgets` (`budget_id`) ON DELETE CASCADE ON UPDATE CASCADE,
3148   CONSTRAINT `aqorders_ibfk_1` FOREIGN KEY (`basketno`) REFERENCES `aqbasket` (`basketno`) ON DELETE CASCADE ON UPDATE CASCADE,
3149   CONSTRAINT `aqorders_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE SET NULL ON UPDATE CASCADE,
3150   CONSTRAINT aqorders_ibfk_3 FOREIGN KEY (invoiceid) REFERENCES aqinvoices (invoiceid) ON DELETE SET NULL ON UPDATE CASCADE,
3151   CONSTRAINT `aqorders_subscriptionid` FOREIGN KEY (`subscriptionid`) REFERENCES `subscription` (`subscriptionid`) ON DELETE CASCADE ON UPDATE CASCADE,
3152   CONSTRAINT `aqorders_currency` FOREIGN KEY (`currency`) REFERENCES `currency` (`currency`) ON DELETE SET NULL ON UPDATE SET NULL
3153 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3154
3155 --
3156 -- Table structure for table `aqorder_users`
3157 --
3158
3159 DROP TABLE IF EXISTS `aqorder_users`;
3160 CREATE TABLE aqorder_users ( -- Mapping orders to patrons for notification sending
3161     ordernumber int(11) NOT NULL, -- the order this patrons receive notifications from (aqorders.ordernumber)
3162     borrowernumber int(11) NOT NULL, -- the borrowernumber for the patron receiving notifications for this order (borrowers.borrowernumber)
3163     PRIMARY KEY (ordernumber, borrowernumber),
3164     CONSTRAINT aqorder_users_ibfk_1 FOREIGN KEY (ordernumber) REFERENCES aqorders (ordernumber) ON DELETE CASCADE ON UPDATE CASCADE,
3165     CONSTRAINT aqorder_users_ibfk_2 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE
3166 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3167
3168 --
3169 -- Table structure for table `aqorders_items`
3170 --
3171
3172 DROP TABLE IF EXISTS `aqorders_items`;
3173 CREATE TABLE `aqorders_items` ( -- information on items entered in the acquisitions process
3174   `ordernumber` int(11) NOT NULL, -- the order this item is attached to (aqorders.ordernumber)
3175   `itemnumber` int(11) NOT NULL, -- the item number for this item (items.itemnumber)
3176   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this order item was last touched
3177   PRIMARY KEY  (`itemnumber`),
3178   KEY `ordernumber` (`ordernumber`),
3179   CONSTRAINT aqorders_items_ibfk_1 FOREIGN KEY (ordernumber) REFERENCES aqorders (ordernumber) ON DELETE CASCADE ON UPDATE CASCADE
3180 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3181
3182 --
3183 -- Table structure for table aqorders_transfers
3184 --
3185
3186 DROP TABLE IF EXISTS aqorders_transfers;
3187 CREATE TABLE aqorders_transfers (
3188   ordernumber_from int(11) NULL,
3189   ordernumber_to int(11) NULL,
3190   timestamp timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
3191   UNIQUE KEY ordernumber_from (ordernumber_from),
3192   UNIQUE KEY ordernumber_to (ordernumber_to),
3193   CONSTRAINT aqorders_transfers_ordernumber_from FOREIGN KEY (ordernumber_from) REFERENCES aqorders (ordernumber) ON DELETE SET NULL ON UPDATE CASCADE,
3194   CONSTRAINT aqorders_transfers_ordernumber_to FOREIGN KEY (ordernumber_to) REFERENCES aqorders (ordernumber) ON DELETE SET NULL ON UPDATE CASCADE
3195 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3196
3197 --
3198 -- Table structure for table `fieldmapping`
3199 --
3200
3201 DROP TABLE IF EXISTS `fieldmapping`;
3202 CREATE TABLE `fieldmapping` ( -- koha to keyword mapping
3203   `id` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
3204   `field` varchar(255) NOT NULL, -- keyword to be mapped to (ex. subtitle)
3205   `frameworkcode` char(4) NOT NULL default '', -- foreign key from the biblio_framework table to link this mapping to a specific framework
3206   `fieldcode` char(3) NOT NULL, -- marc field number to map to this keyword
3207   `subfieldcode` char(1) NOT NULL, -- marc subfield associated with the fieldcode to map to this keyword
3208   PRIMARY KEY  (`id`)
3209 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3210
3211 --
3212 -- Table structure for table `transport_cost`
3213 --
3214
3215 DROP TABLE IF EXISTS transport_cost;
3216 CREATE TABLE transport_cost (
3217       frombranch varchar(10) NOT NULL,
3218       tobranch varchar(10) NOT NULL,
3219       cost decimal(6,2) NOT NULL,
3220       disable_transfer tinyint(1) NOT NULL DEFAULT 0,
3221       CHECK ( frombranch <> tobranch ), -- a dud check, mysql does not support that
3222       PRIMARY KEY (frombranch, tobranch),
3223       CONSTRAINT transport_cost_ibfk_1 FOREIGN KEY (frombranch) REFERENCES branches (branchcode) ON DELETE CASCADE ON UPDATE CASCADE,
3224       CONSTRAINT transport_cost_ibfk_2 FOREIGN KEY (tobranch) REFERENCES branches (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE
3225 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3226
3227 --
3228 -- Table structure for table `biblioimages`
3229 --
3230
3231 DROP TABLE IF EXISTS `biblioimages`;
3232
3233 CREATE TABLE `biblioimages` ( -- local cover images
3234  `imagenumber` int(11) NOT NULL AUTO_INCREMENT, -- unique identifier for the image
3235  `biblionumber` int(11) NOT NULL, -- foreign key from biblio table to link to biblionumber
3236  `mimetype` varchar(15) NOT NULL, -- image type
3237  `imagefile` mediumblob NOT NULL, -- image file contents
3238  `thumbnail` mediumblob NOT NULL, -- thumbnail file contents
3239  PRIMARY KEY (`imagenumber`),
3240  CONSTRAINT `bibliocoverimage_fk1` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE
3241 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3242
3243 --
3244 -- Table structure for table `social_data`
3245 --
3246
3247 DROP TABLE IF EXISTS `social_data`;
3248 CREATE TABLE IF NOT EXISTS `social_data` (
3249   `isbn` VARCHAR(30),
3250   `num_critics` INT,
3251   `num_critics_pro` INT,
3252   `num_quotations` INT,
3253   `num_videos` INT,
3254   `score_avg` DECIMAL(5,2),
3255   `num_scores` INT,
3256   PRIMARY KEY  (`isbn`)
3257 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3258
3259 --
3260 -- 'Ratings' table. This tracks the star ratings set by borrowers.
3261 --
3262
3263 DROP TABLE IF EXISTS ratings;
3264 CREATE TABLE ratings ( -- information related to the star ratings in the OPAC
3265     borrowernumber int(11) NOT NULL, -- the borrowernumber of the patron who left this rating (borrowers.borrowernumber)
3266     biblionumber int(11) NOT NULL, -- the biblio this rating is for (biblio.biblionumber)
3267     rating_value tinyint(1) NOT NULL, -- the rating, from 1 to 5
3268     timestamp timestamp NOT NULL default CURRENT_TIMESTAMP,
3269     PRIMARY KEY  (borrowernumber,biblionumber),
3270     CONSTRAINT ratings_ibfk_1 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE,
3271     CONSTRAINT ratings_ibfk_2 FOREIGN KEY (biblionumber) REFERENCES biblio (biblionumber) ON DELETE CASCADE ON UPDATE CASCADE
3272 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3273
3274 --
3275 -- Table structure for table `quotes`
3276 --
3277
3278 DROP TABLE IF EXISTS quotes;
3279 CREATE TABLE `quotes` ( -- data for the quote of the day feature
3280   `id` int(11) NOT NULL AUTO_INCREMENT, -- unique id for the quote
3281   `source` text DEFAULT NULL, -- source/credit for the quote
3282   `text` mediumtext NOT NULL, -- text of the quote
3283   `timestamp` datetime NOT NULL, -- date and time that the quote last appeared in the opac
3284   PRIMARY KEY (`id`)
3285 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3286
3287 --
3288 -- Table structure for table categories_branches
3289 --
3290
3291 DROP TABLE IF EXISTS categories_branches;
3292 CREATE TABLE categories_branches( -- association table between categories and branches
3293     categorycode VARCHAR(10),
3294     branchcode VARCHAR(10),
3295     FOREIGN KEY (categorycode) REFERENCES categories(categorycode) ON DELETE CASCADE,
3296     FOREIGN KEY (branchcode) REFERENCES branches(branchcode) ON DELETE CASCADE
3297 ) ENGINE=INNODB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3298
3299 --
3300 -- Table structure for table authorised_values_branches
3301 --
3302
3303 DROP TABLE IF EXISTS authorised_values_branches;
3304 CREATE TABLE authorised_values_branches( -- association table between authorised_values and branches
3305     av_id INT(11) NOT NULL,
3306     branchcode VARCHAR(10) NOT NULL,
3307     FOREIGN KEY (av_id) REFERENCES authorised_values(id) ON DELETE CASCADE,
3308     FOREIGN KEY (branchcode) REFERENCES branches(branchcode) ON DELETE CASCADE
3309 ) ENGINE=INNODB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3310
3311
3312 --
3313 -- Table structure for table borrower_attribute_types_branches
3314 --
3315
3316 DROP TABLE IF EXISTS borrower_attribute_types_branches;
3317 CREATE TABLE borrower_attribute_types_branches( -- association table between borrower_attribute_types and branches
3318     bat_code VARCHAR(10),
3319     b_branchcode VARCHAR(10),
3320     FOREIGN KEY (bat_code) REFERENCES borrower_attribute_types(code) ON DELETE CASCADE,
3321     FOREIGN KEY (b_branchcode) REFERENCES branches(branchcode) ON DELETE CASCADE
3322 ) ENGINE=INNODB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3323
3324 --
3325 -- Table structure for table `borrower_modifications`
3326 --
3327
3328 CREATE TABLE IF NOT EXISTS `borrower_modifications` (
3329   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
3330   `verification_token` varchar(255) NOT NULL DEFAULT '',
3331   `borrowernumber` int(11) NOT NULL DEFAULT '0',
3332   `cardnumber` varchar(16) DEFAULT NULL,
3333   `surname` mediumtext,
3334   `firstname` text,
3335   `title` mediumtext,
3336   `othernames` mediumtext,
3337   `initials` text,
3338   `streetnumber` varchar(10) DEFAULT NULL,
3339   `streettype` varchar(50) DEFAULT NULL,
3340   `address` mediumtext,
3341   `address2` text,
3342   `city` mediumtext,
3343   `state` text,
3344   `zipcode` varchar(25) DEFAULT NULL,
3345   `country` text,
3346   `email` mediumtext,
3347   `phone` text,
3348   `mobile` varchar(50) DEFAULT NULL,
3349   `fax` mediumtext,
3350   `emailpro` text,
3351   `phonepro` text,
3352   `B_streetnumber` varchar(10) DEFAULT NULL,
3353   `B_streettype` varchar(50) DEFAULT NULL,
3354   `B_address` varchar(100) DEFAULT NULL,
3355   `B_address2` text,
3356   `B_city` mediumtext,
3357   `B_state` text,
3358   `B_zipcode` varchar(25) DEFAULT NULL,
3359   `B_country` text,
3360   `B_email` text,
3361   `B_phone` mediumtext,
3362   `dateofbirth` date DEFAULT NULL,
3363   `branchcode` varchar(10) DEFAULT NULL,
3364   `categorycode` varchar(10) DEFAULT NULL,
3365   `dateenrolled` date DEFAULT NULL,
3366   `dateexpiry` date DEFAULT NULL,
3367   `gonenoaddress` tinyint(1) DEFAULT NULL,
3368   `lost` tinyint(1) DEFAULT NULL,
3369   `debarred` date DEFAULT NULL,
3370   `debarredcomment` varchar(255) DEFAULT NULL,
3371   `contactname` mediumtext,
3372   `contactfirstname` text,
3373   `contacttitle` text,
3374   `guarantorid` int(11) DEFAULT NULL,
3375   `borrowernotes` mediumtext,
3376   `relationship` varchar(100) DEFAULT NULL,
3377   `sex` varchar(1) DEFAULT NULL,
3378   `password` varchar(30) DEFAULT NULL,
3379   `flags` int(11) DEFAULT NULL,
3380   `userid` varchar(75) DEFAULT NULL,
3381   `opacnote` mediumtext,
3382   `contactnote` varchar(255) DEFAULT NULL,
3383   `sort1` varchar(80) DEFAULT NULL,
3384   `sort2` varchar(80) DEFAULT NULL,
3385   `altcontactfirstname` varchar(255) DEFAULT NULL,
3386   `altcontactsurname` varchar(255) DEFAULT NULL,
3387   `altcontactaddress1` varchar(255) DEFAULT NULL,
3388   `altcontactaddress2` varchar(255) DEFAULT NULL,
3389   `altcontactaddress3` varchar(255) DEFAULT NULL,
3390   `altcontactstate` text,
3391   `altcontactzipcode` varchar(50) DEFAULT NULL,
3392   `altcontactcountry` text,
3393   `altcontactphone` varchar(50) DEFAULT NULL,
3394   `smsalertnumber` varchar(50) DEFAULT NULL,
3395   `privacy` int(11) DEFAULT NULL,
3396   PRIMARY KEY (`verification_token`,`borrowernumber`),
3397   KEY `verification_token` (`verification_token`),
3398   KEY `borrowernumber` (`borrowernumber`)
3399 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3400
3401 --
3402 -- Table structure for table uploaded_files
3403 --
3404
3405 DROP TABLE IF EXISTS uploaded_files;
3406 CREATE TABLE uploaded_files (
3407     id int(11) NOT NULL AUTO_INCREMENT,
3408     hashvalue CHAR(40) NOT NULL,
3409     filename TEXT NOT NULL,
3410     dir TEXT NOT NULL,
3411     filesize int(11),
3412     dtcreated timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
3413     uploadcategorycode tinytext,
3414     owner int(11),
3415     public tinyint,
3416     permanent tinyint,
3417     PRIMARY KEY (id)
3418 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3419
3420 --
3421 -- Table structure for table linktracker
3422 -- This stores clicks to external links
3423 --
3424
3425 DROP TABLE IF EXISTS linktracker;
3426 CREATE TABLE linktracker (
3427    id int(11) NOT NULL AUTO_INCREMENT, -- primary key identifier
3428    biblionumber int(11) DEFAULT NULL, -- biblionumber of the record the link is from
3429    itemnumber int(11) DEFAULT NULL, -- itemnumber if applicable that the link was from
3430    borrowernumber int(11) DEFAULT NULL, -- borrowernumber who clicked the link
3431    url text, -- the link itself
3432    timeclicked datetime DEFAULT NULL, -- the date and time the link was clicked
3433    PRIMARY KEY (id),
3434    KEY bibidx (biblionumber),
3435    KEY itemidx (itemnumber),
3436    KEY borridx (borrowernumber),
3437    KEY dateidx (timeclicked)
3438 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3439
3440 --
3441 -- Table structure for table 'plugin_data'
3442 --
3443
3444 CREATE TABLE IF NOT EXISTS plugin_data (
3445   plugin_class varchar(255) NOT NULL,
3446   plugin_key varchar(255) NOT NULL,
3447   plugin_value text,
3448   PRIMARY KEY (plugin_class,plugin_key)
3449 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3450
3451 --
3452 -- Table structure for table `patron_lists`
3453 --
3454
3455 DROP TABLE IF EXISTS patron_lists;
3456 CREATE TABLE patron_lists (
3457   patron_list_id int(11) NOT NULL AUTO_INCREMENT, -- unique identifier
3458   name varchar(255) CHARACTER SET utf8 NOT NULL,  -- the list's name
3459   owner int(11) NOT NULL,                         -- borrowernumber of the list creator
3460   PRIMARY KEY (patron_list_id),
3461   KEY owner (owner)
3462 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3463
3464 --
3465 -- Constraints for table `patron_lists`
3466 --
3467 ALTER TABLE `patron_lists`
3468   ADD CONSTRAINT patron_lists_ibfk_1 FOREIGN KEY (`owner`) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE;
3469
3470 --
3471 -- Table structure for table 'patron_list_patrons'
3472 --
3473
3474 DROP TABLE IF EXISTS patron_list_patrons;
3475 CREATE TABLE patron_list_patrons (
3476   patron_list_patron_id int(11) NOT NULL AUTO_INCREMENT, -- unique identifier
3477   patron_list_id int(11) NOT NULL,                       -- the list this entry is part of
3478   borrowernumber int(11) NOT NULL,                       -- the borrower that is part of this list
3479   PRIMARY KEY (patron_list_patron_id),
3480   KEY patron_list_id (patron_list_id),
3481   KEY borrowernumber (borrowernumber)
3482 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3483
3484 --
3485 -- Constraints for table `patron_list_patrons`
3486 --
3487 ALTER TABLE `patron_list_patrons`
3488   ADD CONSTRAINT patron_list_patrons_ibfk_1 FOREIGN KEY (patron_list_id) REFERENCES patron_lists (patron_list_id) ON DELETE CASCADE ON UPDATE CASCADE,
3489   ADD CONSTRAINT patron_list_patrons_ibfk_2 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE;
3490
3491 --
3492 -- Table structure for table 'marc_modification_templates'
3493 --
3494
3495 CREATE TABLE IF NOT EXISTS marc_modification_templates (
3496     template_id int(11) NOT NULL AUTO_INCREMENT,
3497     name text NOT NULL,
3498     PRIMARY KEY (template_id)
3499 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3500
3501 --
3502 -- Table structure for table 'marc_modification_template_actions'
3503 --
3504
3505 CREATE TABLE IF NOT EXISTS marc_modification_template_actions (
3506   mmta_id int(11) NOT NULL AUTO_INCREMENT,
3507   template_id int(11) NOT NULL,
3508   ordering int(3) NOT NULL,
3509   action ENUM('delete_field','update_field','move_field','copy_field','copy_and_replace_field') NOT NULL,
3510   field_number smallint(6) NOT NULL DEFAULT '0',
3511   from_field varchar(3) NOT NULL,
3512   from_subfield varchar(1) DEFAULT NULL,
3513   field_value varchar(100) DEFAULT NULL,
3514   to_field varchar(3) DEFAULT NULL,
3515   to_subfield varchar(1) DEFAULT NULL,
3516   to_regex_search text,
3517   to_regex_replace text,
3518   to_regex_modifiers varchar(8) DEFAULT '',
3519   conditional enum('if','unless') DEFAULT NULL,
3520   conditional_field varchar(3) DEFAULT NULL,
3521   conditional_subfield varchar(1) DEFAULT NULL,
3522   conditional_comparison enum('exists','not_exists','equals','not_equals') DEFAULT NULL,
3523   conditional_value text,
3524   conditional_regex tinyint(1) NOT NULL DEFAULT '0',
3525   description text,
3526   PRIMARY KEY (mmta_id),
3527   CONSTRAINT `mmta_ibfk_1` FOREIGN KEY (`template_id`) REFERENCES `marc_modification_templates` (`template_id`) ON DELETE CASCADE ON UPDATE CASCADE
3528 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3529
3530 --
3531 -- Table structure for table `misc_files`
3532 --
3533
3534 CREATE TABLE IF NOT EXISTS `misc_files` ( -- miscellaneous files attached to records from various tables
3535   `file_id` int(11) NOT NULL AUTO_INCREMENT, -- unique id for the file record
3536   `table_tag` varchar(255) NOT NULL, -- usually table name, or arbitrary unique tag
3537   `record_id` int(11) NOT NULL, -- record id from the table this file is associated to
3538   `file_name` varchar(255) NOT NULL, -- file name
3539   `file_type` varchar(255) NOT NULL, -- MIME type of the file
3540   `file_description` varchar(255) DEFAULT NULL, -- description given to the file
3541   `file_content` longblob NOT NULL, -- file content
3542   `date_uploaded` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, -- date and time the file was added
3543   PRIMARY KEY (`file_id`),
3544   KEY `table_tag` (`table_tag`),
3545   KEY `record_id` (`record_id`)
3546 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3547
3548 --
3549 -- Table structure for table `columns_settings`
3550 --
3551
3552 CREATE TABLE IF NOT EXISTS columns_settings (
3553     module varchar(255) NOT NULL,
3554     page varchar(255) NOT NULL,
3555     tablename varchar(255) NOT NULL,
3556     columnname varchar(255) NOT NULL,
3557     cannot_be_toggled int(1) NOT NULL DEFAULT 0,
3558     is_hidden int(1) NOT NULL DEFAULT 0,
3559     PRIMARY KEY(module, page, tablename, columnname)
3560 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3561
3562 --
3563 -- Table structure for table 'items_search_fields'
3564 --
3565
3566 DROP TABLE IF EXISTS items_search_fields;
3567 CREATE TABLE items_search_fields (
3568   name VARCHAR(255) NOT NULL,
3569   label VARCHAR(255) NOT NULL,
3570   tagfield CHAR(3) NOT NULL,
3571   tagsubfield CHAR(1) NULL DEFAULT NULL,
3572   authorised_values_category VARCHAR(32) NULL DEFAULT NULL,
3573   PRIMARY KEY(name),
3574   CONSTRAINT items_search_fields_authorised_values_category
3575     FOREIGN KEY (authorised_values_category) REFERENCES authorised_values (category)
3576     ON DELETE SET NULL ON UPDATE CASCADE
3577 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3578
3579 --
3580 -- Table structure for table 'discharges'
3581 --
3582
3583 DROP TABLE IF EXISTS discharges;
3584 CREATE TABLE discharges (
3585   discharge_id int(11) NOT NULL AUTO_INCREMENT,
3586   borrower int(11) DEFAULT NULL,
3587   needed timestamp NULL DEFAULT NULL,
3588   validated timestamp NULL DEFAULT NULL,
3589   PRIMARY KEY (discharge_id),
3590   KEY borrower_discharges_ibfk1 (borrower),
3591   CONSTRAINT borrower_discharges_ibfk1 FOREIGN KEY (borrower) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE
3592 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3593
3594 --
3595 -- Table structure for table additional_fields
3596 -- This table add the ability to add new fields for a record
3597 --
3598
3599 DROP TABLE IF EXISTS additional_fields;
3600 CREATE TABLE `additional_fields` (
3601   `id` int(11) NOT NULL AUTO_INCREMENT, -- primary key identifier
3602   `tablename` varchar(255) NOT NULL DEFAULT '', -- tablename of the new field
3603   `name` varchar(255) NOT NULL DEFAULT '', -- name of the field
3604   `authorised_value_category` varchar(16) NOT NULL DEFAULT '', -- is an authorised value category
3605   `marcfield` varchar(16) NOT NULL DEFAULT '', -- contains the marc field to copied into the record
3606   `searchable` tinyint(1) NOT NULL DEFAULT '0', -- is the field searchable?
3607   PRIMARY KEY (`id`),
3608   UNIQUE KEY `fields_uniq` (`tablename`,`name`)
3609 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3610
3611 --
3612 -- Table structure for table additional_field_values
3613 -- This table store values for additional fields
3614 --
3615
3616 DROP TABLE IF EXISTS additional_field_values;
3617 CREATE TABLE `additional_field_values` (
3618   `id` int(11) NOT NULL AUTO_INCREMENT, -- primary key identifier
3619   `field_id` int(11) NOT NULL, -- foreign key references additional_fields(id)
3620   `record_id` int(11) NOT NULL, -- record_id
3621   `value` varchar(255) NOT NULL DEFAULT '', -- value for this field
3622   PRIMARY KEY (`id`),
3623   UNIQUE KEY `field_record` (`field_id`,`record_id`),
3624   CONSTRAINT `afv_fk` FOREIGN KEY (`field_id`) REFERENCES `additional_fields` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
3625 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3626
3627 --
3628 -- Table structure for table 'localization'
3629 --
3630
3631 DROP TABLE IF EXISTS localization;
3632 CREATE TABLE `localization` (
3633       localization_id int(11) NOT NULL AUTO_INCREMENT,
3634       entity varchar(16) COLLATE utf8_unicode_ci NOT NULL,
3635       code varchar(64) COLLATE utf8_unicode_ci NOT NULL,
3636       lang varchar(25) COLLATE utf8_unicode_ci NOT NULL, -- could be a foreign key
3637       translation text COLLATE utf8_unicode_ci,
3638       PRIMARY KEY (localization_id),
3639       UNIQUE KEY `entity_code_lang` (`entity`,`code`,`lang`)
3640 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3641
3642 --
3643 -- Table structure for table 'audio_alerts'
3644 --
3645
3646 DROP TABLE IF EXISTS audio_alerts;
3647 CREATE TABLE audio_alerts (
3648   id int(11) NOT NULL AUTO_INCREMENT,
3649   precedence smallint(5) unsigned NOT NULL,
3650   selector varchar(255) NOT NULL,
3651   sound varchar(255) NOT NULL,
3652   PRIMARY KEY (id),
3653   KEY precedence (precedence)
3654 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3655
3656 --
3657 -- Table structure for table 'edifact_ean'
3658 --
3659
3660 DROP TABLE IF EXISTS edifact_ean;
3661 CREATE TABLE IF NOT EXISTS edifact_ean (
3662   ee_id int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
3663   description VARCHAR(128) NULL DEFAULT NULL,
3664   branchcode VARCHAR(10) NOT NULL REFERENCES branches (branchcode),
3665   ean VARCHAR(15) NOT NULL,
3666   id_code_qualifier VARCHAR(3) NOT NULL DEFAULT '14',
3667   CONSTRAINT efk_branchcode FOREIGN KEY ( branchcode ) REFERENCES branches ( branchcode )
3668 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3669
3670 --
3671 -- Table structure for table `courses`
3672 --
3673
3674 -- The courses table stores the courses created for the
3675 -- course reserves feature.
3676
3677 DROP TABLE IF EXISTS courses;
3678 CREATE TABLE `courses` (
3679   `course_id` int(11) NOT NULL AUTO_INCREMENT, -- unique id for the course
3680   `department` varchar(80) DEFAULT NULL, -- the authorised value for the DEPARTMENT
3681   `course_number` varchar(255) DEFAULT NULL, -- the "course number" assigned to a course
3682   `section` varchar(255) DEFAULT NULL, -- the 'section' of a course
3683   `course_name` varchar(255) DEFAULT NULL, -- the name of the course
3684   `term` varchar(80) DEFAULT NULL, -- the authorised value for the TERM
3685   `staff_note` mediumtext, -- the text of the staff only note
3686   `public_note` mediumtext, -- the text of the public / opac note
3687   `students_count` varchar(20) DEFAULT NULL, -- how many students will be taking this course/section
3688   `enabled` enum('yes','no') NOT NULL DEFAULT 'yes', -- determines whether the course is active
3689   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
3690    PRIMARY KEY (`course_id`)
3691 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3692
3693 --
3694 -- Table structure for table `course_instructors`
3695 --
3696
3697 -- The course instructors table links Koha borrowers to the
3698 -- courses they are teaching. Many instructors can teach many
3699 -- courses. course_instructors is just a many-to-many join table.
3700
3701 DROP TABLE IF EXISTS course_instructors;
3702 CREATE TABLE `course_instructors` (
3703   `course_id` int(11) NOT NULL, -- foreign key to link to courses.course_id
3704   `borrowernumber` int(11) NOT NULL, -- foreign key to link to borrowers.borrowernumber for instructor information
3705   PRIMARY KEY (`course_id`,`borrowernumber`),
3706   KEY `borrowernumber` (`borrowernumber`)
3707 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3708
3709 --
3710 -- Constraints for table `course_instructors`
3711 --
3712 ALTER TABLE `course_instructors`
3713   ADD CONSTRAINT `course_instructors_ibfk_2` FOREIGN KEY (`course_id`) REFERENCES `courses` (`course_id`),
3714   ADD CONSTRAINT `course_instructors_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE;
3715
3716 --
3717 -- Table structure for table `course_items`
3718 --
3719
3720 -- If an item is placed on course reserve for one or more courses
3721 -- it will have an entry in this table. No matter how many courses an item
3722 -- is part of, it will only have one row in this table.
3723
3724 DROP TABLE IF EXISTS course_items;
3725 CREATE TABLE `course_items` (
3726   `ci_id` int(11) NOT NULL AUTO_INCREMENT, -- course item id
3727   `itemnumber` int(11) NOT NULL, -- items.itemnumber for the item on reserve
3728   `itype` varchar(10) DEFAULT NULL, -- new itemtype for the item to have while on reserve (optional)
3729   `ccode` varchar(10) DEFAULT NULL, -- new category code for the item to have while on reserve (optional)
3730   `holdingbranch` varchar(10) DEFAULT NULL, -- new holding branch for the item to have while on reserve (optional)
3731   `location` varchar(80) DEFAULT NULL, -- new shelving location for the item to have while on reseve (optional)
3732   `enabled` enum('yes','no') NOT NULL DEFAULT 'no', -- if at least one enabled course has this item on reseve, this field will be 'yes', otherwise it will be 'no'
3733   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
3734    PRIMARY KEY (`ci_id`),
3735    UNIQUE KEY `itemnumber` (`itemnumber`),
3736    KEY `holdingbranch` (`holdingbranch`)
3737 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3738
3739 --
3740 -- Constraints for table `course_items`
3741 --
3742 ALTER TABLE `course_items`
3743   ADD CONSTRAINT `course_items_ibfk_2` FOREIGN KEY (`holdingbranch`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE,
3744   ADD CONSTRAINT `course_items_ibfk_1` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE;
3745
3746 --
3747 -- Table structure for table `course_reserves`
3748 --
3749
3750 -- This table connects an item placed on course reserve to a course it is on reserve for.
3751 -- There will be a row in this table for each course an item is on reserve for.
3752
3753 DROP TABLE IF EXISTS course_reserves;
3754 CREATE TABLE `course_reserves` (
3755   `cr_id` int(11) NOT NULL AUTO_INCREMENT,
3756   `course_id` int(11) NOT NULL, -- foreign key to link to courses.course_id
3757   `ci_id` int(11) NOT NULL, -- foreign key to link to courses_items.ci_id
3758   `staff_note` mediumtext, -- staff only note
3759   `public_note` mediumtext, -- public, OPAC visible note
3760   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
3761    PRIMARY KEY (`cr_id`),
3762    UNIQUE KEY `pseudo_key` (`course_id`,`ci_id`),
3763    KEY `course_id` (`course_id`)
3764 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3765
3766 --
3767 -- Constraints for table `course_reserves`
3768 --
3769 ALTER TABLE `course_reserves`
3770   ADD CONSTRAINT `course_reserves_ibfk_1` FOREIGN KEY (`course_id`) REFERENCES `courses` (`course_id`),
3771   ADD CONSTRAINT `course_reserves_ibfk_2` FOREIGN KEY (`ci_id`) REFERENCES `course_items` (`ci_id`) ON DELETE CASCADE ON UPDATE CASCADE;
3772
3773 --
3774 -- Table structure for table `hold_fill_targets`
3775 --
3776
3777 DROP TABLE IF EXISTS `hold_fill_targets`;
3778 CREATE TABLE `hold_fill_targets` (
3779   `borrowernumber` int(11) NOT NULL,
3780   `biblionumber` int(11) NOT NULL,
3781   `itemnumber` int(11) NOT NULL,
3782   `source_branchcode`  varchar(10) default NULL,
3783   `item_level_request` tinyint(4) NOT NULL default 0,
3784   PRIMARY KEY `itemnumber` (`itemnumber`),
3785   KEY `bib_branch` (`biblionumber`, `source_branchcode`),
3786   CONSTRAINT `hold_fill_targets_ibfk_1` FOREIGN KEY (`borrowernumber`)
3787     REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
3788   CONSTRAINT `hold_fill_targets_ibfk_2` FOREIGN KEY (`biblionumber`)
3789     REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE,
3790   CONSTRAINT `hold_fill_targets_ibfk_3` FOREIGN KEY (`itemnumber`)
3791     REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
3792   CONSTRAINT `hold_fill_targets_ibfk_4` FOREIGN KEY (`source_branchcode`)
3793     REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE
3794 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3795
3796 /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
3797 /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
3798 /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
3799 /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
3800 /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
3801 /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
3802 /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
3803 /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;