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