]> git.koha-community.org Git - koha.git/blob - installer/data/mysql/kohastructure.sql
Bug 26268: Remove items.paidfor from the database
[koha.git] / installer / data / mysql / kohastructure.sql
1 -- MySQL dump 10.9
2 --
3 -- Host: localhost    Database: koha30test
4 -- ------------------------------------------------------
5 -- Server version    4.1.22
6
7 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
8 /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
9 /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
10 /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
11 /*!40101 SET NAMES utf8mb4 */;
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` LONGTEXT,
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=utf8mb4 COLLATE=utf8mb4_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` LONGTEXT NOT NULL,
47   PRIMARY KEY  (`authtypecode`)
48 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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` MEDIUMTEXT,
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=utf8mb4 COLLATE=utf8mb4_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=utf8mb4 COLLATE=utf8mb4_unicode_ci;
94
95
96 --
97 -- Table structure for table `authorised_value_categories`
98 --
99
100 DROP TABLE IF EXISTS `authorised_value_categories`;
101 CREATE TABLE `authorised_value_categories` (
102   `category_name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
103   `is_system` tinyint(1) default 0,
104   PRIMARY KEY (`category_name`)
105 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
106
107 --
108 -- Table structure for table `authorised_values`
109 --
110
111 DROP TABLE IF EXISTS `authorised_values`;
112 CREATE TABLE `authorised_values` ( -- stores values for authorized values categories and values
113   `id` int(11) NOT NULL auto_increment, -- unique key, used to identify the authorized value
114   `category` varchar(32) NOT NULL default '', -- key used to identify the authorized value category
115   `authorised_value` varchar(80) NOT NULL default '', -- code use to identify the authorized value
116   `lib` varchar(200) default NULL, -- authorized value description as printed in the staff interface
117   `lib_opac` varchar(200) default NULL, -- authorized value description as printed in the OPAC
118   `imageurl` varchar(200) default NULL, -- authorized value URL
119   PRIMARY KEY  (`id`),
120   KEY `name` (`category`),
121   KEY `lib` (`lib` (191)),
122   KEY `auth_value_idx` (`authorised_value`),
123   CONSTRAINT `av_uniq` UNIQUE (`category`,`authorised_value`),
124   CONSTRAINT `authorised_values_authorised_values_category` FOREIGN KEY (`category`) REFERENCES `authorised_value_categories` (`category_name`) ON DELETE CASCADE ON UPDATE CASCADE
125 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
126
127 --
128 -- Table structure for table `biblio`
129 --
130
131 DROP TABLE IF EXISTS `biblio`;
132 CREATE TABLE `biblio` ( -- table that stores bibliographic information
133   `biblionumber` int(11) NOT NULL auto_increment, -- unique identifier assigned to each bibliographic record
134   `frameworkcode` varchar(4) NOT NULL default '', -- foreign key from the biblio_framework table to identify which framework was used in cataloging this record
135   `author` LONGTEXT, -- statement of responsibility from MARC record (100$a in MARC21)
136   `title` LONGTEXT, -- title (without the subtitle) from the MARC record (245$a in MARC21)
137   `medium` LONGTEXT, -- medium from the MARC record (245$h in MARC21)
138   `subtitle` LONGTEXT, -- remainder of the title from the MARC record (245$b in MARC21)
139   `part_number` LONGTEXT, -- part number from the MARC record (245$n in MARC21)
140   `part_name` LONGTEXT, -- part name from the MARC record (245$p in MARC21)
141   `unititle` LONGTEXT, -- uniform title (without the subtitle) from the MARC record (240$a in MARC21)
142   `notes` LONGTEXT, -- values from the general notes field in the MARC record (500$a in MARC21) split by bar (|)
143   `serial` tinyint(1) default NULL, -- Boolean indicating whether biblio is for a serial
144   `seriestitle` LONGTEXT,
145   `copyrightdate` smallint(6) default NULL, -- publication or copyright date from the MARC record
146   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this record was last touched
147   `datecreated` DATE NOT NULL, -- the date this record was added to Koha
148   `abstract` LONGTEXT, -- summary from the MARC record (520$a in MARC21)
149   PRIMARY KEY  (`biblionumber`),
150   KEY `blbnoidx` (`biblionumber`)
151 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
152
153 --
154 -- Table structure for table `biblio_framework`
155 --
156
157 DROP TABLE IF EXISTS `biblio_framework`;
158 CREATE TABLE `biblio_framework` ( -- information about MARC frameworks
159   `frameworkcode` varchar(4) NOT NULL default '', -- the unique code assigned to the framework
160   `frameworktext` varchar(255) NOT NULL default '', -- the description/name given to the framework
161   PRIMARY KEY  (`frameworkcode`)
162 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
163
164 --
165 -- Table structure for table `biblioitems`
166 --
167
168 DROP TABLE IF EXISTS `biblioitems`;
169 CREATE TABLE `biblioitems` ( -- information related to bibliographic records in Koha
170   `biblioitemnumber` int(11) NOT NULL auto_increment, -- primary key, unique identifier assigned by Koha
171   `biblionumber` int(11) NOT NULL default 0, -- foreign key linking this table to the biblio table
172   `volume` LONGTEXT,
173   `number` LONGTEXT,
174   `itemtype` varchar(10) default NULL, -- biblio level item type (MARC21 942$c)
175   `isbn` LONGTEXT, -- ISBN (MARC21 020$a)
176   `issn` LONGTEXT, -- ISSN (MARC21 022$a)
177   `ean` LONGTEXT default NULL,
178   `publicationyear` MEDIUMTEXT,
179   `publishercode` varchar(255) default NULL, -- publisher (MARC21 260$b)
180   `volumedate` date default NULL,
181   `volumedesc` MEDIUMTEXT, -- volume information (MARC21 362$a)
182   `collectiontitle` LONGTEXT default NULL,
183   `collectionissn` MEDIUMTEXT default NULL,
184   `collectionvolume` LONGTEXT default NULL,
185   `editionstatement` MEDIUMTEXT default NULL,
186   `editionresponsibility` MEDIUMTEXT default NULL,
187   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
188   `illus` varchar(255) default NULL, -- illustrations (MARC21 300$b)
189   `pages` varchar(255) default NULL, -- number of pages (MARC21 300$c)
190   `notes` LONGTEXT,
191   `size` varchar(255) default NULL, -- material size (MARC21 300$c)
192   `place` varchar(255) default NULL, -- publication place (MARC21 260$a)
193   `lccn` varchar(25) default NULL, -- library of congress control number (MARC21 010$a)
194   `url` MEDIUMTEXT default NULL, -- url (MARC21 856$u)
195   `cn_source` varchar(10) default NULL, -- classification source (MARC21 942$2)
196   `cn_class` varchar(30) default NULL,
197   `cn_item` varchar(10) default NULL,
198   `cn_suffix` varchar(10) default NULL,
199   `cn_sort` varchar(255) default NULL, -- normalized version of the call number used for sorting
200   `agerestriction` varchar(255) default NULL, -- target audience/age restriction from the bib record (MARC21 521$a)
201   `totalissues` int(10),
202   PRIMARY KEY  (`biblioitemnumber`),
203   KEY `bibinoidx` (`biblioitemnumber`),
204   KEY `bibnoidx` (`biblionumber`),
205   KEY `itemtype_idx` (`itemtype`),
206   KEY `isbn` (`isbn`(255)),
207   KEY `issn` (`issn`(255)),
208   KEY `ean` (`ean`(255)),
209   KEY `publishercode` (`publishercode` (191)),
210   KEY `timestamp` (`timestamp`),
211   CONSTRAINT `biblioitems_ibfk_1` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE
212 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
213
214 --
215 -- Table structure for table `borrower_attribute_types`
216 --
217
218 DROP TABLE IF EXISTS `borrower_attribute_types`;
219 CREATE TABLE `borrower_attribute_types` ( -- definitions for custom patron fields known as extended patron attributes
220   `code` varchar(10) NOT NULL, -- unique key used to identify each custom field
221   `description` varchar(255) NOT NULL, -- description for each custom field
222   `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)
223   `unique_id` tinyint(1) NOT NULL default 0, -- defines if this value needs to be unique (1 for yes, 0 for no)
224   `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)
225   `opac_editable` tinyint(1) NOT NULL default 0, -- defines if this field is editable by patrons on their account in the OPAC (1 for yes, 0 for no)
226   `staff_searchable` tinyint(1) NOT NULL default 0, -- defines if this field is searchable via the patron search in the staff interface (1 for yes, 0 for no)
227   `authorised_value_category` varchar(32) default NULL, -- foreign key from authorised_values that links this custom field to an authorized value category
228   `display_checkout` tinyint(1) NOT NULL default 0,-- defines if this field displays in checkout screens
229   `category_code` VARCHAR(10) NULL DEFAULT NULL,-- defines a category for an attribute_type
230   `class` VARCHAR(255) NOT NULL DEFAULT '',-- defines a class for an attribute_type
231   `keep_for_pseudonymization` tinyint(1) NOT NULL default 0, -- defines if this field is copied to anonymized_borrower_attributes (1 for yes, 0 for no)
232   `mandatory` tinyint(1) NOT NULL DEFAULT 0, -- defines if the attribute is mandatory or not
233   PRIMARY KEY  (`code`),
234   KEY `auth_val_cat_idx` (`authorised_value_category`)
235 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
236
237 --
238 -- Table structure for table `borrower_password_recovery`
239 --
240
241 DROP TABLE IF EXISTS `borrower_password_recovery`;
242 CREATE TABLE IF NOT EXISTS `borrower_password_recovery` ( -- holds information about password recovery attempts
243   `borrowernumber` int(11) NOT NULL, -- the user asking a password recovery
244   `uuid` varchar(128) NOT NULL, -- a unique string to identify a password recovery attempt
245   `valid_until` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, -- a time limit on the password recovery attempt
246   PRIMARY KEY (`borrowernumber`),
247   KEY borrowernumber (borrowernumber)
248 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
249
250 --
251 -- Table structure for table `branches`
252 --
253
254 DROP TABLE IF EXISTS `branches`;
255 CREATE TABLE `branches` ( -- information about your libraries or branches are stored here
256   `branchcode` varchar(10) NOT NULL default '', -- a unique key assigned to each branch
257   `branchname` LONGTEXT NOT NULL, -- the name of your library or branch
258   `branchaddress1` LONGTEXT, -- the first address line of for your library or branch
259   `branchaddress2` LONGTEXT, -- the second address line of for your library or branch
260   `branchaddress3` LONGTEXT, -- the third address line of for your library or branch
261   `branchzip` varchar(25) default NULL, -- the zip or postal code for your library or branch
262   `branchcity` LONGTEXT, -- the city or province for your library or branch
263   `branchstate` LONGTEXT, -- the state for your library or branch
264   `branchcountry` MEDIUMTEXT, -- the county for your library or branch
265   `branchphone` LONGTEXT, -- the primary phone for your library or branch
266   `branchfax` LONGTEXT, -- the fax number for your library or branch
267   `branchemail` LONGTEXT, -- the primary email address for your library or branch
268   `branchreplyto` LONGTEXT, -- the email to be used as a Reply-To
269   `branchreturnpath` LONGTEXT, -- the email to be used as Return-Path
270   `branchurl` LONGTEXT, -- the URL for your library or branch's website
271   `issuing` tinyint(4) default NULL, -- unused in Koha
272   `branchip` varchar(15) default NULL, -- the IP address for your library or branch
273   `branchnotes` LONGTEXT, -- notes related to your library or branch
274   opac_info MEDIUMTEXT, -- HTML that displays in OPAC
275   `geolocation` VARCHAR(255) default NULL, -- geolocation of your library
276   `marcorgcode` VARCHAR(16) default NULL, -- MARC Organization Code, see http://www.loc.gov/marc/organizations/orgshome.html, when empty defaults to syspref MARCOrgCode
277   `pickup_location` tinyint(1) NOT NULL default 1, -- the ability to act as a pickup location
278   PRIMARY KEY (`branchcode`)
279 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
280
281 --
282 -- Table structure for table `branches_overdrive`
283 --
284
285 DROP TABLE IF EXISTS `branches_overdrive`;
286 CREATE TABLE IF NOT EXISTS branches_overdrive (
287   `branchcode` VARCHAR( 10 ) NOT NULL ,
288   `authname` VARCHAR( 255 ) NOT NULL ,
289   PRIMARY KEY (`branchcode`) ,
290   CONSTRAINT `branches_overdrive_ibfk_1` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE
291 ) ENGINE = InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
292
293 --
294 -- Table structure for table `browser`
295 --
296 DROP TABLE IF EXISTS `browser`;
297 CREATE TABLE `browser` (
298   `level` int(11) NOT NULL,
299   `classification` varchar(20) NOT NULL,
300   `description` varchar(255) NOT NULL,
301   `number` bigint(20) NOT NULL,
302   `endnode` tinyint(4) NOT NULL
303 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
304
305 --
306 -- Table structure for table `categories`
307 --
308
309 DROP TABLE IF EXISTS `categories`;
310 CREATE TABLE `categories` ( -- this table shows information related to Koha patron categories
311   `categorycode` varchar(10) NOT NULL default '', -- unique primary key used to idenfity the patron category
312   `description` LONGTEXT, -- description of the patron category
313   `enrolmentperiod` smallint(6) default NULL, -- number of months the patron is enrolled for (will be NULL if enrolmentperioddate is set)
314   `enrolmentperioddate` DATE NULL DEFAULT NULL, -- date the patron is enrolled until (will be NULL if enrolmentperiod is set)
315   `upperagelimit` smallint(6) default NULL, -- age limit for the patron
316   `dateofbirthrequired` tinyint(1) default NULL, -- the minimum age required for the patron category
317   `finetype` varchar(30) default NULL, -- unused in Koha
318   `bulk` tinyint(1) default NULL,
319   `enrolmentfee` decimal(28,6) default NULL, -- enrollment fee for the patron
320   `overduenoticerequired` tinyint(1) default NULL, -- are overdue notices sent to this patron category (1 for yes, 0 for no)
321   `issuelimit` smallint(6) default NULL, -- unused in Koha
322   `reservefee` decimal(28,6) default NULL, -- cost to place holds
323   `hidelostitems` tinyint(1) NOT NULL default '0', -- are lost items shown to this category (1 for yes, 0 for no)
324   `category_type` varchar(1) NOT NULL default 'A', -- type of Koha patron (Adult, Child, Professional, Organizational, Statistical, Staff)
325   `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
326   `default_privacy` ENUM( 'default', 'never', 'forever' ) NOT NULL DEFAULT 'default', -- Default privacy setting for this patron category
327   `checkprevcheckout` varchar(7) NOT NULL default 'inherit', -- produce a warning for this patron category if this item has previously been checked out to this patron if 'yes', not if 'no', defer to syspref setting if 'inherit'.
328   `reset_password` TINYINT(1) NULL DEFAULT NULL, -- if patrons of this category can do the password reset flow,
329   `change_password` TINYINT(1) NULL DEFAULT NULL, -- if patrons of this category can change their passwords in the OAPC
330   `min_password_length` smallint(6) NULL DEFAULT NULL, -- set minimum password length for patrons in this category
331   `require_strong_password` TINYINT(1) NULL DEFAULT NULL, -- set required password strength for patrons in this category
332   `exclude_from_local_holds_priority` tinyint(1) default NULL, -- Exclude patrons of this category from local holds priority
333   PRIMARY KEY  (`categorycode`),
334   UNIQUE KEY `categorycode` (`categorycode`)
335 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
336
337 --
338 -- Table: collections
339 --
340 DROP TABLE IF EXISTS collections;
341 CREATE TABLE collections (
342   colId integer(11) NOT NULL auto_increment,
343   colTitle varchar(100) NOT NULL DEFAULT '',
344   colDesc MEDIUMTEXT NOT NULL,
345   colBranchcode varchar(10) DEFAULT NULL, -- 'branchcode for branch where item should be held.'
346   PRIMARY KEY (colId)
347 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
348
349 --
350 -- Constraints for table `collections`
351 --
352 ALTER TABLE `collections`
353   ADD CONSTRAINT `collections_ibfk_1` FOREIGN KEY (`colBranchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE;
354
355 --
356 -- Table: collections_tracking
357 --
358
359 DROP TABLE IF EXISTS collections_tracking;
360 CREATE TABLE collections_tracking (
361   collections_tracking_id integer(11) NOT NULL auto_increment,
362   colId integer(11) NOT NULL DEFAULT 0 comment 'collections.colId',
363   itemnumber integer(11) NOT NULL DEFAULT 0 comment 'items.itemnumber',
364   PRIMARY KEY (collections_tracking_id)
365 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
366
367 --
368 -- Table structure for table `cities`
369 --
370
371 DROP TABLE IF EXISTS `cities`;
372 CREATE TABLE `cities` ( -- authorized values for cities/states/countries to choose when adding/editing a patron/borrower
373   `cityid` int(11) NOT NULL auto_increment, -- unique identifier added by Koha
374   `city_name` varchar(100) NOT NULL default '', -- name of the city
375   `city_state` VARCHAR( 100 ) NULL DEFAULT NULL, -- name of the state/province
376   `city_country` VARCHAR( 100 ) NULL DEFAULT NULL, -- name of the country
377   `city_zipcode` varchar(20) default NULL, -- zip or postal code
378   PRIMARY KEY  (`cityid`)
379 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
380
381 --
382 -- Table structure for table desks
383 --
384
385 DROP TABLE IF EXISTS desks;
386 CREATE TABLE desks ( -- desks available in a library
387   desk_id int(11) NOT NULL auto_increment, -- unique identifier
388   desk_name varchar(100) NOT NULL default '', -- name of the desk
389   branchcode varchar(10) NOT NULL,       -- library the desk is located at
390   PRIMARY KEY  (desk_id),
391   KEY `fk_desks_branchcode` (branchcode),
392   CONSTRAINT `fk_desks_branchcode` FOREIGN KEY (branchcode) REFERENCES branches (branchcode) ON DELETE CASCADE ON UPDATE CASCADE
393 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
394
395 --
396 -- Table structure for table `class_sort_rules`
397 --
398
399 DROP TABLE IF EXISTS `class_sort_rules`;
400 CREATE TABLE `class_sort_rules` (
401   `class_sort_rule` varchar(10) NOT NULL default '',
402   `description` LONGTEXT,
403   `sort_routine` varchar(30) NOT NULL default '',
404   PRIMARY KEY (`class_sort_rule`),
405   UNIQUE KEY `class_sort_rule_idx` (`class_sort_rule`)
406 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
407
408 --
409 -- Table structure for table `class_split_rules`
410 --
411
412 DROP TABLE IF EXISTS `class_split_rules`;
413
414 CREATE TABLE class_split_rules (
415   class_split_rule varchar(10) NOT NULL default '',
416   description LONGTEXT,
417   split_routine varchar(30) NOT NULL default '',
418   split_regex varchar(255) NOT NULL default '',
419   PRIMARY KEY (class_split_rule),
420   UNIQUE KEY class_split_rule_idx (class_split_rule)
421 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
422
423 --
424 -- Table structure for table `class_sources`
425 --
426
427 DROP TABLE IF EXISTS `class_sources`;
428 CREATE TABLE `class_sources` (
429   `cn_source` varchar(10) NOT NULL default '',
430   `description` LONGTEXT,
431   `used` tinyint(4) NOT NULL default 0,
432   `class_sort_rule` varchar(10) NOT NULL default '',
433   `class_split_rule` varchar(10) NOT NULL default '',
434   PRIMARY KEY (`cn_source`),
435   UNIQUE KEY `cn_source_idx` (`cn_source`),
436   KEY `used_idx` (`used`),
437   CONSTRAINT `class_source_ibfk_1` FOREIGN KEY (`class_sort_rule`) REFERENCES `class_sort_rules` (`class_sort_rule`),
438   CONSTRAINT `class_source_ibfk_2` FOREIGN KEY (`class_split_rule`) REFERENCES `class_split_rules` (`class_split_rule`)
439 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
440
441 --
442 -- Table structure for table `currency`
443 --
444
445 DROP TABLE IF EXISTS `currency`;
446 CREATE TABLE `currency` (
447   `currency` varchar(10) NOT NULL default '',
448   `symbol` varchar(5) default NULL,
449   `isocode` varchar(5) default NULL,
450   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
451   `rate` float(15,5) default NULL,
452   `active` tinyint(1) default NULL,
453   `archived` tinyint(1) DEFAULT 0,
454   `p_sep_by_space` tinyint(1) DEFAULT 0,
455   PRIMARY KEY  (`currency`)
456 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
457
458 --
459 -- Table structure for table `deletedbiblio`
460 --
461
462 DROP TABLE IF EXISTS `deletedbiblio`;
463 CREATE TABLE `deletedbiblio` ( -- stores information about bibliographic records that have been deleted
464   `biblionumber` int(11) NOT NULL auto_increment, -- unique identifier assigned to each bibliographic record
465   `frameworkcode` varchar(4) NOT NULL default '', -- foriegn key from the biblio_framework table to identify which framework was used in cataloging this record
466   `author` LONGTEXT, -- statement of responsibility from MARC record (100$a in MARC21)
467   `title` LONGTEXT, -- title (without the subtitle) from the MARC record (245$a in MARC21)
468   `medium` LONGTEXT, -- medium from the MARC record (245$h in MARC21)
469   `subtitle` LONGTEXT, -- remainder of the title from the MARC record (245$b in MARC21)
470   `part_number` LONGTEXT, -- part number from the MARC record (245$n in MARC21)
471   `part_name` LONGTEXT, -- part name from the MARC record (245$p in MARC21)
472   `unititle` LONGTEXT, -- uniform title (without the subtitle) from the MARC record (240$a in MARC21)
473   `notes` LONGTEXT, -- values from the general notes field in the MARC record (500$a in MARC21) split by bar (|)
474   `serial` tinyint(1) default NULL, -- Boolean indicating whether biblio is for a serial
475   `seriestitle` LONGTEXT,
476   `copyrightdate` smallint(6) default NULL, -- publication or copyright date from the MARC record
477   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this record was last touched
478   `datecreated` DATE NOT NULL, -- the date this record was added to Koha
479   `abstract` LONGTEXT, -- summary from the MARC record (520$a in MARC21)
480   PRIMARY KEY  (`biblionumber`),
481   KEY `blbnoidx` (`biblionumber`)
482 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
483
484 --
485 -- Table structure for table `deletedbiblioitems`
486 --
487
488 DROP TABLE IF EXISTS `deletedbiblioitems`;
489 CREATE TABLE `deletedbiblioitems` ( -- information about bibliographic records that have been deleted
490   `biblioitemnumber` int(11) NOT NULL default 0, -- primary key, unique identifier assigned by Koha
491   `biblionumber` int(11) NOT NULL default 0, -- foreign key linking this table to the biblio table
492   `volume` LONGTEXT,
493   `number` LONGTEXT,
494   `itemtype` varchar(10) default NULL, -- biblio level item type (MARC21 942$c)
495   `isbn` LONGTEXT default NULL, -- ISBN (MARC21 020$a)
496   `issn` LONGTEXT default NULL, -- ISSN (MARC21 022$a)
497   `ean` LONGTEXT default NULL,
498   `publicationyear` MEDIUMTEXT,
499   `publishercode` varchar(255) default NULL, -- publisher (MARC21 260$b)
500   `volumedate` date default NULL,
501   `volumedesc` MEDIUMTEXT, -- volume information (MARC21 362$a)
502   `collectiontitle` LONGTEXT default NULL,
503   `collectionissn` MEDIUMTEXT default NULL,
504   `collectionvolume` LONGTEXT default NULL,
505   `editionstatement` MEDIUMTEXT default NULL,
506   `editionresponsibility` MEDIUMTEXT default NULL,
507   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
508   `illus` varchar(255) default NULL, -- illustrations (MARC21 300$b)
509   `pages` varchar(255) default NULL, -- number of pages (MARC21 300$c)
510   `notes` LONGTEXT,
511   `size` varchar(255) default NULL, -- material size (MARC21 300$c)
512   `place` varchar(255) default NULL, -- publication place (MARC21 260$a)
513   `lccn` varchar(25) default NULL, -- library of congress control number (MARC21 010$a)
514   `url` MEDIUMTEXT default NULL, -- url (MARC21 856$u)
515   `cn_source` varchar(10) default NULL, -- classification source (MARC21 942$2)
516   `cn_class` varchar(30) default NULL,
517   `cn_item` varchar(10) default NULL,
518   `cn_suffix` varchar(10) default NULL,
519   `cn_sort` varchar(255) default NULL, -- normalized version of the call number used for sorting
520   `agerestriction` varchar(255) default NULL, -- target audience/age restriction from the bib record (MARC21 521$a)
521   `totalissues` int(10),
522   PRIMARY KEY  (`biblioitemnumber`),
523   KEY `bibinoidx` (`biblioitemnumber`),
524   KEY `bibnoidx` (`biblionumber`),
525   KEY `itemtype_idx` (`itemtype`),
526   KEY `isbn` (`isbn`(255)),
527   KEY `ean` (`ean`(255)),
528   KEY `publishercode` (`publishercode` (191)),
529   KEY `timestamp` (`timestamp`)
530 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
531
532 --
533 -- Table structure for table `deletedborrowers`
534 --
535
536 DROP TABLE IF EXISTS `deletedborrowers`;
537 CREATE TABLE `deletedborrowers` ( -- stores data related to the patrons/borrowers you have deleted
538   `borrowernumber` int(11) NOT NULL default 0, -- primary key, Koha assigned ID number for patrons/borrowers
539   `cardnumber` varchar(32) default NULL, -- unique key, library assigned ID number for patrons/borrowers
540   `surname` LONGTEXT, -- patron/borrower's last name (surname)
541   `firstname` MEDIUMTEXT, -- patron/borrower's first name
542   `title` LONGTEXT, -- patron/borrower's title, for example: Mr. or Mrs.
543   `othernames` LONGTEXT, -- any other names associated with the patron/borrower
544   `initials` MEDIUMTEXT, -- initials for your patron/borrower
545   `streetnumber` TINYTEXT default NULL, -- the house number for your patron/borrower's primary address
546   `streettype` TINYTEXT default NULL, -- the street type (Rd., Blvd, etc) for your patron/borrower's primary address
547   `address` LONGTEXT, -- the first address line for your patron/borrower's primary address
548   `address2` MEDIUMTEXT, -- the second address line for your patron/borrower's primary address
549   `city` LONGTEXT, -- the city or town for your patron/borrower's primary address
550   `state` MEDIUMTEXT default NULL, -- the state or province for your patron/borrower's primary address
551   `zipcode` TINYTEXT default NULL, -- the zip or postal code for your patron/borrower's primary address
552   `country` MEDIUMTEXT, -- the country for your patron/borrower's primary address
553   `email` LONGTEXT, -- the primary email address for your patron/borrower's primary address
554   `phone` MEDIUMTEXT, -- the primary phone number for your patron/borrower's primary address
555   `mobile` TINYTEXT default NULL, -- the other phone number for your patron/borrower's primary address
556   `fax` LONGTEXT, -- the fax number for your patron/borrower's primary address
557   `emailpro` MEDIUMTEXT, -- the secondary email addres for your patron/borrower's primary address
558   `phonepro` MEDIUMTEXT, -- the secondary phone number for your patron/borrower's primary address
559   `B_streetnumber` TINYTEXT default NULL, -- the house number for your patron/borrower's alternate address
560   `B_streettype` TINYTEXT default NULL, -- the street type (Rd., Blvd, etc) for your patron/borrower's alternate address
561   `B_address` MEDIUMTEXT default NULL, -- the first address line for your patron/borrower's alternate address
562   `B_address2` MEDIUMTEXT default NULL, -- the second address line for your patron/borrower's alternate address
563   `B_city` LONGTEXT, -- the city or town for your patron/borrower's alternate address
564   `B_state` MEDIUMTEXT default NULL, -- the state for your patron/borrower's alternate address
565   `B_zipcode` TINYTEXT default NULL, -- the zip or postal code for your patron/borrower's alternate address
566   `B_country` MEDIUMTEXT, -- the country for your patron/borrower's alternate address
567   `B_email` MEDIUMTEXT, -- the patron/borrower's alternate email address
568   `B_phone` LONGTEXT, -- the patron/borrower's alternate phone number
569   `dateofbirth` date default NULL, -- the patron/borrower's date of birth (YYYY-MM-DD)
570   `branchcode` varchar(10) NOT NULL default '', -- foreign key from the branches table, includes the code of the patron/borrower's home branch
571   `categorycode` varchar(10) NOT NULL default '', -- foreign key from the categories table, includes the code of the patron category
572   `dateenrolled` date default NULL, -- date the patron was added to Koha (YYYY-MM-DD)
573   `dateexpiry` date default NULL, -- date the patron/borrower's card is set to expire (YYYY-MM-DD)
574   `date_renewed` date default NULL, -- date the patron/borrower's card was last renewed
575   `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
576   `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
577   `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 (YYYY-MM-DD)
578   `debarredcomment` VARCHAR(255) DEFAULT NULL, -- comment on the stop of patron
579   `contactname` LONGTEXT, -- used for children and profesionals to include surname or last name of guarantor or organization name
580   `contactfirstname` MEDIUMTEXT, -- used for children to include first name of guarantor
581   `contacttitle` MEDIUMTEXT, -- used for children to include title (Mr., Mrs., etc) of guarantor
582   `borrowernotes` LONGTEXT, -- a note on the patron/borrower's account that is only visible in the staff interface
583   `relationship` varchar(100) default NULL, -- used for children to include the relationship to their guarantor
584   `sex` varchar(1) default NULL, -- patron/borrower's gender
585   `password` varchar(60) default NULL, -- patron/borrower's encrypted password
586   `flags` int(11) default NULL, -- will include a number associated with the staff member's permissions
587   `userid` varchar(75) default NULL, -- patron/borrower's opac and/or staff interface log in
588   `opacnote` LONGTEXT, -- a note on the patron/borrower's account that is visible in the OPAC and staff interface
589   `contactnote` varchar(255) default NULL, -- a note related to the patron/borrower's alternate address
590   `sort1` varchar(80) default NULL, -- a field that can be used for any information unique to the library
591   `sort2` varchar(80) default NULL, -- a field that can be used for any information unique to the library
592   `altcontactfirstname` MEDIUMTEXT default NULL, -- first name of alternate contact for the patron/borrower
593   `altcontactsurname` MEDIUMTEXT default NULL, -- surname or last name of the alternate contact for the patron/borrower
594   `altcontactaddress1` MEDIUMTEXT default NULL, -- the first address line for the alternate contact for the patron/borrower
595   `altcontactaddress2` MEDIUMTEXT default NULL, -- the second address line for the alternate contact for the patron/borrower
596   `altcontactaddress3` MEDIUMTEXT default NULL, -- the city for the alternate contact for the patron/borrower
597   `altcontactstate` MEDIUMTEXT default NULL, -- the state for the alternate contact for the patron/borrower
598   `altcontactzipcode` MEDIUMTEXT default NULL, -- the zipcode for the alternate contact for the patron/borrower
599   `altcontactcountry` MEDIUMTEXT default NULL, -- the country for the alternate contact for the patron/borrower
600   `altcontactphone` MEDIUMTEXT default NULL, -- the phone number for the alternate contact for the patron/borrower
601   `smsalertnumber` varchar(50) default NULL, -- the mobile phone number where the patron/borrower would like to receive notices (if SMS turned on)
602   `sms_provider_id` int(11) DEFAULT NULL, -- the provider of the mobile phone number defined in smsalertnumber
603   `privacy` integer(11) DEFAULT '1' NOT NULL, -- patron/borrower's privacy settings related to their reading history  KEY `borrowernumber` (`borrowernumber`),
604   `privacy_guarantor_fines` tinyint(1) NOT NULL DEFAULT '0', -- controls if relatives can see this patron's fines
605   `privacy_guarantor_checkouts` tinyint(1) NOT NULL DEFAULT '0', -- controls if relatives can see this patron's checkouts
606   `checkprevcheckout` varchar(7) NOT NULL default 'inherit', -- produce a warning for this patron if this item has previously been checked out to this patron if 'yes', not if 'no', defer to category setting if 'inherit'.
607   `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)
608   `lastseen` datetime default NULL, -- last time a patron has been seen (connected at the OPAC or staff interface)
609   `lang` varchar(25) NOT NULL default 'default', -- lang to use to send notices to this patron
610   `login_attempts` int(4) NOT NULL default 0, -- number of failed login attemps
611   `overdrive_auth_token` MEDIUMTEXT default NULL, -- persist OverDrive auth token
612   `anonymized` TINYINT(1) NOT NULL DEFAULT 0, -- flag for data anonymization
613   `autorenew_checkouts` TINYINT(1) NOT NULL DEFAULT 1, -- flag for allowing auto-renewal
614   KEY borrowernumber (borrowernumber),
615   KEY `cardnumber` (`cardnumber`),
616   KEY `sms_provider_id` (`sms_provider_id`)
617 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
618
619 --
620 -- Table structure for table `deleteditems`
621 --
622
623 DROP TABLE IF EXISTS `deleteditems`;
624 CREATE TABLE `deleteditems` (
625   `itemnumber` int(11) NOT NULL default 0, -- primary key and unique identifier added by Koha
626   `biblionumber` int(11) NOT NULL default 0, -- foreign key from biblio table used to link this item to the right bib record
627   `biblioitemnumber` int(11) NOT NULL default 0, -- foreign key from the biblioitems table to link to item to additional information
628   `barcode` varchar(20) default NULL, -- item barcode (MARC21 952$p)
629   `dateaccessioned` date default NULL, -- date the item was acquired or added to Koha (MARC21 952$d)
630   `booksellerid` LONGTEXT default NULL, -- where the item was purchased (MARC21 952$e)
631   `homebranch` varchar(10) default NULL, -- foreign key from the branches table for the library that owns this item (MARC21 952$a)
632   `price` decimal(8,2) default NULL, -- purchase price (MARC21 952$g)
633   `replacementprice` decimal(8,2) default NULL, -- cost the library charges to replace the item if it has been marked lost (MARC21 952$v)
634   `replacementpricedate` date default NULL, -- the date the price is effective from (MARC21 952$w)
635   `datelastborrowed` date default NULL, -- the date the item was last checked out
636   `datelastseen` date default NULL, -- the date the item was last see (usually the last time the barcode was scanned or inventory was done)
637   `stack` tinyint(1) default NULL,
638   `notforloan` tinyint(1) NOT NULL default 0, -- authorized value defining why this item is not for loan (MARC21 952$7)
639   `damaged` tinyint(1) NOT NULL default 0, -- authorized value defining this item as damaged (MARC21 952$4)
640   `damaged_on` datetime DEFAULT NULL, -- the date and time an item was last marked as damaged, NULL if not damaged
641   `itemlost` tinyint(1) NOT NULL default 0, -- authorized value defining this item as lost (MARC21 952$1)
642   `itemlost_on` datetime DEFAULT NULL, -- the date and time an item was last marked as lost, NULL if not lost
643   `withdrawn` tinyint(1) NOT NULL default 0, -- authorized value defining this item as withdrawn (MARC21 952$0)
644   `withdrawn_on` datetime DEFAULT NULL, -- the date and time an item was last marked as withdrawn, NULL if not withdrawn
645   `itemcallnumber` varchar(255) default NULL, -- call number for this item (MARC21 952$o)
646   `coded_location_qualifier` varchar(10) default NULL, -- coded location qualifier(MARC21 952$f)
647   `issues` smallint(6) default 0, -- number of times this item has been checked out
648   `renewals` smallint(6) default NULL, -- number of times this item has been renewed
649   `reserves` smallint(6) default NULL, -- number of times this item has been placed on hold/reserved
650   `restricted` tinyint(1) default NULL, -- authorized value defining use restrictions for this item (MARC21 952$5)
651   `itemnotes` LONGTEXT, -- public notes on this item (MARC21 952$z)
652   `itemnotes_nonpublic` LONGTEXT default NULL, -- non-public notes on this item (MARC21 952$x)
653   `holdingbranch` varchar(10) default NULL, -- foreign key from the branches table for the library that is currently in possession item (MARC21 952$b)
654   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this item was last altered
655   `location` varchar(80) default NULL, -- authorized value for the shelving location for this item (MARC21 952$c)
656   `permanent_location` varchar(80) default NULL, -- linked to the CART and PROC temporary locations feature, stores the permanent shelving location
657   `onloan` date default NULL, -- defines if item is checked out (NULL for not checked out, and due date for checked out)
658   `cn_source` varchar(10) default NULL, -- classification source used on this item (MARC21 952$2)
659   `cn_sort` varchar(255) default NULL, -- normalized form of the call number (MARC21 952$o) used for sorting
660   `ccode` varchar(80) default NULL, -- authorized value for the collection code associated with this item (MARC21 952$8)
661   `materials` MEDIUMTEXT default NULL, -- materials specified (MARC21 952$3)
662   `uri` MEDIUMTEXT default NULL, -- URL for the item (MARC21 952$u)
663   `itype` varchar(10) default NULL, -- foreign key from the itemtypes table defining the type for this item (MARC21 952$y)
664   `more_subfields_xml` LONGTEXT default NULL, -- additional 952 subfields in XML format
665   `enumchron` MEDIUMTEXT default NULL, -- serial enumeration/chronology for the item (MARC21 952$h)
666   `copynumber` varchar(32) default NULL, -- copy number (MARC21 952$t)
667   `stocknumber` varchar(32) default NULL, -- inventory number (MARC21 952$i)
668   `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.
669   `exclude_from_local_holds_priority` tinyint(1) default NULL, -- Exclude this item from local holds priority
670   PRIMARY KEY  (`itemnumber`),
671   KEY `delitembarcodeidx` (`barcode`),
672   KEY `delitemstocknumberidx` (`stocknumber`),
673   KEY `delitembinoidx` (`biblioitemnumber`),
674   KEY `delitembibnoidx` (`biblionumber`),
675   KEY `delhomebranch` (`homebranch`),
676   KEY `delholdingbranch` (`holdingbranch`),
677   KEY `itype_idx` (`itype`),
678   KEY `timestamp` (`timestamp`)
679 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
680
681 --
682 -- Table structure for table `export_format`
683 --
684
685 DROP TABLE IF EXISTS `export_format`;
686 CREATE TABLE `export_format` (
687   `export_format_id` int(11) NOT NULL auto_increment,
688   `profile` varchar(255) NOT NULL,
689   `description` LONGTEXT NOT NULL,
690   `content` LONGTEXT NOT NULL,
691   `csv_separator` varchar(2) NOT NULL DEFAULT ',',
692   `field_separator` varchar(2),
693   `subfield_separator` varchar(2),
694   `encoding` varchar(255) NOT NULL DEFAULT 'utf8',
695   `type` varchar(255) DEFAULT 'marc',
696   `used_for` varchar(255) DEFAULT 'export_records',
697   `staff_only` TINYINT(1) NOT NULL DEFAULT 0,
698   PRIMARY KEY (`export_format_id`),
699   KEY `used_for_idx` (`used_for` (191)),
700   KEY `staff_only_idx` (`staff_only`)
701 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Used for CSV export';
702
703 --
704 -- Table structure for table `import_batches`
705 --
706
707 DROP TABLE IF EXISTS `import_batches`;
708 CREATE TABLE `import_batches` ( -- information about batches of marc records that have been imported
709   `import_batch_id` int(11) NOT NULL auto_increment, -- unique identifier and primary key
710   `matcher_id` int(11) default NULL, -- the id of the match rule used (matchpoints.matcher_id)
711   `template_id` int(11) default NULL,
712   `branchcode` varchar(10) default NULL,
713   `num_records` int(11) NOT NULL default 0, -- number of records in the file
714   `num_items` int(11) NOT NULL default 0, -- number of items in the file
715   `upload_timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP, -- date and time the file was uploaded
716   `overlay_action` enum('replace', 'create_new', 'use_template', 'ignore') NOT NULL default 'create_new', -- how to handle duplicate records
717   `nomatch_action` enum('create_new', 'ignore') NOT NULL default 'create_new', -- how to handle records where no match is found
718   `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
719   `import_status` enum('staging', 'staged', 'importing', 'imported', 'reverting', 'reverted', 'cleaned') NOT NULL default 'staging', -- the status of the imported file
720   `batch_type` enum('batch', 'z3950', 'webservice') NOT NULL default 'batch', -- where this batch has come from
721   `record_type` enum('biblio', 'auth', 'holdings') NOT NULL default 'biblio', -- type of record in the batch
722   `file_name` varchar(100), -- the name of the file uploaded
723   `comments` LONGTEXT, -- any comments added when the file was uploaded
724   PRIMARY KEY (`import_batch_id`),
725   KEY `branchcode` (`branchcode`)
726 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
727
728 --
729 -- Table structure for table `import_records`
730 --
731
732 DROP TABLE IF EXISTS `import_records`;
733 CREATE TABLE `import_records` (
734   `import_record_id` int(11) NOT NULL auto_increment,
735   `import_batch_id` int(11) NOT NULL,
736   `branchcode` varchar(10) default NULL,
737   `record_sequence` int(11) NOT NULL default 0,
738   `upload_timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP,
739   `import_date` DATE default NULL,
740   `marc` longblob NOT NULL,
741   `marcxml` LONGTEXT NOT NULL,
742   `marcxml_old` LONGTEXT NOT NULL,
743   `record_type` enum('biblio', 'auth', 'holdings') NOT NULL default 'biblio',
744   `overlay_status` enum('no_match', 'auto_match', 'manual_match', 'match_applied') NOT NULL default 'no_match',
745   `status` enum('error', 'staged', 'imported', 'reverted', 'items_reverted', 'ignored') NOT NULL default 'staged',
746   `import_error` LONGTEXT,
747   `encoding` varchar(40) NOT NULL default '',
748   PRIMARY KEY (`import_record_id`),
749   CONSTRAINT `import_records_ifbk_1` FOREIGN KEY (`import_batch_id`)
750              REFERENCES `import_batches` (`import_batch_id`) ON DELETE CASCADE ON UPDATE CASCADE,
751   KEY `branchcode` (`branchcode`),
752   KEY `batch_sequence` (`import_batch_id`, `record_sequence`),
753   KEY `batch_id_record_type` (`import_batch_id`,`record_type`)
754 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
755
756 --
757 -- Table structure for `import_record_matches`
758 --
759 DROP TABLE IF EXISTS `import_record_matches`;
760 CREATE TABLE `import_record_matches` ( -- matches found when importing a batch of records
761   `import_record_id` int(11) NOT NULL, -- the id given to the imported bib record (import_records.import_record_id)
762   `candidate_match_id` int(11) NOT NULL, -- the biblio the imported record matches (biblio.biblionumber)
763   `score` int(11) NOT NULL default 0, -- the match score
764   CONSTRAINT `import_record_matches_ibfk_1` FOREIGN KEY (`import_record_id`)
765              REFERENCES `import_records` (`import_record_id`) ON DELETE CASCADE ON UPDATE CASCADE,
766   KEY `record_score` (`import_record_id`, `score`)
767 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
768
769 --
770 -- Table structure for table `import_auths`
771 --
772
773 DROP TABLE IF EXISTS `import_auths`;
774 CREATE TABLE `import_auths` (
775   `import_record_id` int(11) NOT NULL,
776   `matched_authid` int(11) default NULL,
777   `control_number` varchar(25) default NULL,
778   `authorized_heading` varchar(128) default NULL,
779   `original_source` varchar(25) default NULL,
780   CONSTRAINT `import_auths_ibfk_1` FOREIGN KEY (`import_record_id`)
781              REFERENCES `import_records` (`import_record_id`) ON DELETE CASCADE ON UPDATE CASCADE,
782   KEY `matched_authid` (`matched_authid`)
783 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
784
785 --
786 -- Table structure for table `import_biblios`
787 --
788
789 DROP TABLE IF EXISTS `import_biblios`;
790 CREATE TABLE `import_biblios` (
791   `import_record_id` int(11) NOT NULL,
792   `matched_biblionumber` int(11) default NULL,
793   `control_number` varchar(25) default NULL,
794   `original_source` varchar(25) default NULL,
795   `title` varchar(128) default NULL,
796   `author` varchar(80) default NULL,
797   `isbn` varchar(30) default NULL,
798   `issn` varchar(9) default NULL,
799   `has_items` tinyint(1) NOT NULL default 0,
800   CONSTRAINT `import_biblios_ibfk_1` FOREIGN KEY (`import_record_id`)
801              REFERENCES `import_records` (`import_record_id`) ON DELETE CASCADE ON UPDATE CASCADE,
802   KEY `matched_biblionumber` (`matched_biblionumber`),
803   KEY `title` (`title`),
804   KEY `isbn` (`isbn`)
805 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
806
807 --
808 -- Table structure for table `import_items`
809 --
810
811 DROP TABLE IF EXISTS `import_items`;
812 CREATE TABLE `import_items` (
813   `import_items_id` int(11) NOT NULL auto_increment,
814   `import_record_id` int(11) NOT NULL,
815   `itemnumber` int(11) default NULL,
816   `branchcode` varchar(10) default NULL,
817   `status` enum('error', 'staged', 'imported', 'reverted', 'ignored') NOT NULL default 'staged',
818   `marcxml` LONGTEXT NOT NULL,
819   `import_error` LONGTEXT,
820   PRIMARY KEY (`import_items_id`),
821   CONSTRAINT `import_items_ibfk_1` FOREIGN KEY (`import_record_id`)
822              REFERENCES `import_records` (`import_record_id`) ON DELETE CASCADE ON UPDATE CASCADE,
823   KEY `itemnumber` (`itemnumber`),
824   KEY `branchcode` (`branchcode`)
825 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
826
827 --
828 -- Table structure for table `items`
829 --
830
831 DROP TABLE IF EXISTS `items`;
832 CREATE TABLE `items` ( -- holdings/item information
833   `itemnumber` int(11) NOT NULL auto_increment, -- primary key and unique identifier added by Koha
834   `biblionumber` int(11) NOT NULL default 0, -- foreign key from biblio table used to link this item to the right bib record
835   `biblioitemnumber` int(11) NOT NULL default 0, -- foreign key from the biblioitems table to link to item to additional information
836   `barcode` varchar(20) default NULL, -- item barcode (MARC21 952$p)
837   `dateaccessioned` date default NULL, -- date the item was acquired or added to Koha (MARC21 952$d)
838   `booksellerid` LONGTEXT default NULL, -- where the item was purchased (MARC21 952$e)
839   `homebranch` varchar(10) default NULL, -- foreign key from the branches table for the library that owns this item (MARC21 952$a)
840   `price` decimal(8,2) default NULL, -- purchase price (MARC21 952$g)
841   `replacementprice` decimal(8,2) default NULL, -- cost the library charges to replace the item if it has been marked lost (MARC21 952$v)
842   `replacementpricedate` date default NULL, -- the date the price is effective from (MARC21 952$w)
843   `datelastborrowed` date default NULL, -- the date the item was last checked out/issued
844   `datelastseen` date default NULL, -- the date the item was last see (usually the last time the barcode was scanned or inventory was done)
845   `stack` tinyint(1) default NULL,
846   `notforloan` tinyint(1) NOT NULL default 0, -- authorized value defining why this item is not for loan (MARC21 952$7)
847   `damaged` tinyint(1) NOT NULL default 0, -- authorized value defining this item as damaged (MARC21 952$4)
848   `damaged_on` datetime DEFAULT NULL, -- the date and time an item was last marked as damaged, NULL if not damaged
849   `itemlost` tinyint(1) NOT NULL default 0, -- authorized value defining this item as lost (MARC21 952$1)
850   `itemlost_on` datetime DEFAULT NULL, -- the date and time an item was last marked as lost, NULL if not lost
851   `withdrawn` tinyint(1) NOT NULL default 0, -- authorized value defining this item as withdrawn (MARC21 952$0)
852   `withdrawn_on` datetime DEFAULT NULL, -- the date and time an item was last marked as withdrawn, NULL if not withdrawn
853   `itemcallnumber` varchar(255) default NULL, -- call number for this item (MARC21 952$o)
854   `coded_location_qualifier` varchar(10) default NULL, -- coded location qualifier(MARC21 952$f)
855   `issues` smallint(6) default 0, -- number of times this item has been checked out/issued
856   `renewals` smallint(6) default NULL, -- number of times this item has been renewed
857   `reserves` smallint(6) default NULL, -- number of times this item has been placed on hold/reserved
858   `restricted` tinyint(1) default NULL, -- authorized value defining use restrictions for this item (MARC21 952$5)
859   `itemnotes` LONGTEXT, -- public notes on this item (MARC21 952$z)
860   `itemnotes_nonpublic` LONGTEXT default NULL, -- non-public notes on this item (MARC21 952$x)
861   `holdingbranch` varchar(10) default NULL, -- foreign key from the branches table for the library that is currently in possession item (MARC21 952$b)
862   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this item was last altered
863   `location` varchar(80) default NULL, -- authorized value for the shelving location for this item (MARC21 952$c)
864   `permanent_location` varchar(80) default NULL, -- linked to the CART and PROC temporary locations feature, stores the permanent shelving location
865   `onloan` date default NULL, -- defines if item is checked out (NULL for not checked out, and due date for checked out)
866   `cn_source` varchar(10) default NULL, -- classification source used on this item (MARC21 952$2)
867   `cn_sort` varchar(255) default NULL,  -- normalized form of the call number (MARC21 952$o) used for sorting
868   `ccode` varchar(80) default NULL, -- authorized value for the collection code associated with this item (MARC21 952$8)
869   `materials` MEDIUMTEXT default NULL, -- materials specified (MARC21 952$3)
870   `uri` MEDIUMTEXT default NULL, -- URL for the item (MARC21 952$u)
871   `itype` varchar(10) default NULL, -- foreign key from the itemtypes table defining the type for this item (MARC21 952$y)
872   `more_subfields_xml` LONGTEXT default NULL, -- additional 952 subfields in XML format
873   `enumchron` MEDIUMTEXT default NULL, -- serial enumeration/chronology for the item (MARC21 952$h)
874   `copynumber` varchar(32) default NULL, -- copy number (MARC21 952$t)
875   `stocknumber` varchar(32) default NULL, -- inventory number (MARC21 952$i)
876   `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.
877   `exclude_from_local_holds_priority` tinyint(1) default NULL, -- Exclude this item from local holds priority
878   PRIMARY KEY  (`itemnumber`),
879   UNIQUE KEY `itembarcodeidx` (`barcode`),
880   KEY `itemstocknumberidx` (`stocknumber`),
881   KEY `itembinoidx` (`biblioitemnumber`),
882   KEY `itembibnoidx` (`biblionumber`),
883   KEY `homebranch` (`homebranch`),
884   KEY `holdingbranch` (`holdingbranch`),
885   KEY `itemcallnumber` (`itemcallnumber` (191)),
886   KEY `items_location` (`location`),
887   KEY `items_ccode` (`ccode`),
888   KEY `itype_idx` (`itype`),
889   KEY `timestamp` (`timestamp`),
890   CONSTRAINT `items_ibfk_1` FOREIGN KEY (`biblioitemnumber`) REFERENCES `biblioitems` (`biblioitemnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
891   CONSTRAINT `items_ibfk_2` FOREIGN KEY (`homebranch`) REFERENCES `branches` (`branchcode`) ON UPDATE CASCADE,
892   CONSTRAINT `items_ibfk_3` FOREIGN KEY (`holdingbranch`) REFERENCES `branches` (`branchcode`) ON UPDATE CASCADE,
893   CONSTRAINT `items_ibfk_4` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE
894 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
895
896 --
897 -- Table structure for table `itemtypes`
898 --
899
900 DROP TABLE IF EXISTS `itemtypes`;
901 CREATE TABLE `itemtypes` ( -- defines the item types
902   itemtype varchar(10) NOT NULL default '', -- unique key, a code associated with the item type
903   parent_type varchar(10) NULL default NULL, -- unique key, a code associated with the item type
904   description LONGTEXT, -- a plain text explanation of the item type
905   rentalcharge decimal(28,6) default NULL, -- the amount charged when this item is checked out/issued
906   rentalcharge_daily decimal(28,6) default NULL, -- the amount charged for each day between checkout date and due date
907   rentalcharge_daily_calendar tinyint(1) NOT NULL DEFAULT 1, -- controls if the daily rental fee is calculated directly or using finesCalendar
908   rentalcharge_hourly decimal(28,6) default NULL, -- the amount charged for each hour between checkout date and due date
909   rentalcharge_hourly_calendar tinyint(1) NOT NULL DEFAULT 1, -- controls if the hourly rental fee is calculated directly or using finesCalendar
910   defaultreplacecost decimal(28,6) default NULL, -- default replacement cost
911   processfee decimal(28,6) default NULL, -- default text be recorded in the column note when the processing fee is applied
912   notforloan smallint(6) default NULL, -- 1 if the item is not for loan, 0 if the item is available for loan
913   imageurl varchar(200) default NULL, -- URL for the item type icon
914   summary MEDIUMTEXT, -- information from the summary field, may include HTML
915   checkinmsg VARCHAR(255), -- message that is displayed when an item with the given item type is checked in
916   checkinmsgtype CHAR(16) DEFAULT 'message' NOT NULL, -- type (CSS class) for the checkinmsg, can be "alert" or "message"
917   sip_media_type VARCHAR(3) DEFAULT NULL, -- SIP2 protocol media type for this itemtype
918   hideinopac tinyint(1) NOT NULL DEFAULT 0, -- Hide the item type from the search options in OPAC
919   searchcategory varchar(80) default NULL, -- Group this item type with others with the same value on OPAC search options
920   PRIMARY KEY  (`itemtype`),
921   CONSTRAINT itemtypes_ibfk_1 FOREIGN KEY (parent_type) REFERENCES itemtypes(itemtype) ON UPDATE CASCADE ON DELETE CASCADE,
922   UNIQUE KEY `itemtype` (`itemtype`)
923 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
924
925 --
926 -- Table structure for table `branchtransfers`
927 --
928
929 DROP TABLE IF EXISTS `branchtransfers`;
930 CREATE TABLE `branchtransfers` ( -- information for items that are in transit between branches
931   `branchtransfer_id` int(12) NOT NULL auto_increment, -- primary key
932   `itemnumber` int(11) NOT NULL default 0, -- the itemnumber that it is in transit (items.itemnumber)
933   `daterequested` timestamp NOT NULL default CURRENT_TIMESTAMP, -- the date the transfer was requested
934   `datesent` datetime default NULL, -- the date the transfer was initialized
935   `frombranch` varchar(10) NOT NULL default '', -- the branch the transfer is coming from
936   `datearrived` datetime default NULL, -- the date the transfer arrived at its destination
937   `tobranch` varchar(10) NOT NULL default '', -- the branch the transfer was going to
938   `comments` LONGTEXT, -- any comments related to the transfer
939   `reason` ENUM('Manual', 'StockrotationAdvance', 'StockrotationRepatriation', 'ReturnToHome', 'ReturnToHolding', 'RotatingCollection', 'Reserve', 'LostReserve', 'CancelReserve'), -- what triggered the transfer
940   PRIMARY KEY (`branchtransfer_id`),
941   KEY `frombranch` (`frombranch`),
942   KEY `tobranch` (`tobranch`),
943   KEY `itemnumber` (`itemnumber`),
944   CONSTRAINT `branchtransfers_ibfk_1` FOREIGN KEY (`frombranch`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE,
945   CONSTRAINT `branchtransfers_ibfk_2` FOREIGN KEY (`tobranch`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE,
946   CONSTRAINT `branchtransfers_ibfk_3` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE
947 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
948
949 --
950 -- Table structure for table `creator_images`
951 --
952
953 DROP TABLE IF EXISTS `creator_images`;
954 SET @saved_cs_client     = @@character_set_client;
955 SET character_set_client = utf8;
956 CREATE TABLE `creator_images` (
957   `image_id` int(4) NOT NULL AUTO_INCREMENT,
958   `imagefile` mediumblob,
959   `image_name` char(20) NOT NULL DEFAULT 'DEFAULT',
960   PRIMARY KEY (`image_id`),
961   UNIQUE KEY `image_name_index` (`image_name`)
962 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
963
964 --
965 -- Table structure for table `creator_layouts`
966 --
967
968 DROP TABLE IF EXISTS `creator_layouts`;
969 SET @saved_cs_client     = @@character_set_client;
970 SET character_set_client = utf8;
971 CREATE TABLE `creator_layouts` (
972   `layout_id` int(4) NOT NULL AUTO_INCREMENT,
973   `barcode_type` char(100) NOT NULL DEFAULT 'CODE39',
974   `start_label` int(2) NOT NULL DEFAULT '1',
975   `printing_type` char(32) NOT NULL DEFAULT 'BAR',
976   `layout_name` char(25) NOT NULL DEFAULT 'DEFAULT',
977   `guidebox` int(1) DEFAULT '0',
978   `oblique_title` int(1) DEFAULT '1',
979   `font` char(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'TR',
980   `font_size` int(4) NOT NULL DEFAULT '10',
981   `units` char(20) NOT NULL DEFAULT 'POINT',
982   `callnum_split` int(1) DEFAULT '0',
983   `text_justify` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'L',
984   `format_string` varchar(210) NOT NULL DEFAULT 'barcode',
985   `layout_xml` MEDIUMTEXT NOT NULL,
986   `creator` char(15) NOT NULL DEFAULT 'Labels',
987   PRIMARY KEY (`layout_id`)
988 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
989
990 --
991 -- Table structure for table `creator_templates`
992 --
993
994 DROP TABLE IF EXISTS `creator_templates`;
995 SET @saved_cs_client     = @@character_set_client;
996 SET character_set_client = utf8;
997 CREATE TABLE `creator_templates` (
998   `template_id` int(4) NOT NULL AUTO_INCREMENT,
999   `profile_id` int(4) DEFAULT NULL,
1000   `template_code` char(100) NOT NULL DEFAULT 'DEFAULT TEMPLATE',
1001   `template_desc` char(100) NOT NULL DEFAULT 'Default description',
1002   `page_width` float NOT NULL DEFAULT '0',
1003   `page_height` float NOT NULL DEFAULT '0',
1004   `label_width` float NOT NULL DEFAULT '0',
1005   `label_height` float NOT NULL DEFAULT '0',
1006   `top_text_margin` float NOT NULL DEFAULT '0',
1007   `left_text_margin` float NOT NULL DEFAULT '0',
1008   `top_margin` float NOT NULL DEFAULT '0',
1009   `left_margin` float NOT NULL DEFAULT '0',
1010   `cols` int(2) NOT NULL DEFAULT '0',
1011   `rows` int(2) NOT NULL DEFAULT '0',
1012   `col_gap` float NOT NULL DEFAULT '0',
1013   `row_gap` float NOT NULL DEFAULT '0',
1014   `units` char(20) NOT NULL DEFAULT 'POINT',
1015   `creator` char(15) NOT NULL DEFAULT 'Labels',
1016   PRIMARY KEY (`template_id`),
1017   KEY `template_profile_fk_constraint` (`profile_id`)
1018 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1019
1020 --
1021 -- Table structure for table `marc_subfield_structure`
1022 --
1023
1024 DROP TABLE IF EXISTS `marc_subfield_structure`;
1025 CREATE TABLE `marc_subfield_structure` (
1026   `tagfield` varchar(3) NOT NULL default '',
1027   `tagsubfield` varchar(1) NOT NULL default '' COLLATE utf8mb4_bin,
1028   `liblibrarian` varchar(255) NOT NULL default '',
1029   `libopac` varchar(255) NOT NULL default '',
1030   `repeatable` tinyint(4) NOT NULL default 0,
1031   `mandatory` tinyint(4) NOT NULL default 0,
1032   `important` tinyint(4) NOT NULL DEFAULT '0',
1033   `kohafield` varchar(40) default NULL,
1034   `tab` tinyint(1) default NULL,
1035   `authorised_value` varchar(32) default NULL,
1036   `authtypecode` varchar(20) default NULL,
1037   `value_builder` varchar(80) default NULL,
1038   `isurl` tinyint(1) default NULL,
1039   `hidden` tinyint(1) NOT NULL default 8,
1040   `frameworkcode` varchar(4) NOT NULL default '',
1041   `seealso` varchar(1100) default NULL,
1042   `link` varchar(80) default NULL,
1043   `defaultvalue` MEDIUMTEXT default NULL,
1044   `maxlength` int(4) NOT NULL DEFAULT '9999',
1045   PRIMARY KEY  (`frameworkcode`,`tagfield`,`tagsubfield`),
1046   KEY `kohafield_2` (`kohafield`),
1047   KEY `tab` (`frameworkcode`,`tab`),
1048   KEY `kohafield` (`frameworkcode`,`kohafield`),
1049   CONSTRAINT `marc_subfield_structure_ibfk_1` FOREIGN KEY (`authorised_value`) REFERENCES `authorised_value_categories` (`category_name`) ON DELETE SET NULL ON UPDATE CASCADE
1050 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1051
1052 --
1053 -- Table structure for table `marc_tag_structure`
1054 --
1055
1056 DROP TABLE IF EXISTS `marc_tag_structure`;
1057 CREATE TABLE `marc_tag_structure` (
1058   `tagfield` varchar(3) NOT NULL default '',
1059   `liblibrarian` varchar(255) NOT NULL default '',
1060   `libopac` varchar(255) NOT NULL default '',
1061   `repeatable` tinyint(4) NOT NULL default 0,
1062   `mandatory` tinyint(4) NOT NULL default 0,
1063   `important` tinyint(4) NOT NULL DEFAULT '0',
1064   `authorised_value` varchar(10) default NULL,
1065   `ind1_defaultvalue` varchar(1) NOT NULL default '',
1066   `ind2_defaultvalue` varchar(1) NOT NULL default '',
1067   `frameworkcode` varchar(4) NOT NULL default '',
1068   PRIMARY KEY  (`frameworkcode`,`tagfield`)
1069 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1070
1071 --
1072 -- Table structure for table `marc_matchers`
1073 --
1074
1075 DROP TABLE IF EXISTS `marc_matchers`;
1076 CREATE TABLE `marc_matchers` (
1077   `matcher_id` int(11) NOT NULL auto_increment,
1078   `code` varchar(10) NOT NULL default '',
1079   `description` varchar(255) NOT NULL default '',
1080   `record_type` varchar(10) NOT NULL default 'biblio',
1081   `threshold` int(11) NOT NULL default 0,
1082   PRIMARY KEY (`matcher_id`),
1083   KEY `code` (`code`),
1084   KEY `record_type` (`record_type`)
1085 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1086
1087 --
1088 -- Table structure for table `matchpoints`
1089 --
1090 DROP TABLE IF EXISTS `matchpoints`;
1091 CREATE TABLE `matchpoints` (
1092   `matcher_id` int(11) NOT NULL,
1093   `matchpoint_id` int(11) NOT NULL auto_increment,
1094   `search_index` varchar(30) NOT NULL default '',
1095   `score` int(11) NOT NULL default 0,
1096   PRIMARY KEY (`matchpoint_id`),
1097   CONSTRAINT `matchpoints_ifbk_1` FOREIGN KEY (`matcher_id`)
1098   REFERENCES `marc_matchers` (`matcher_id`) ON DELETE CASCADE ON UPDATE CASCADE
1099 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1100
1101
1102 --
1103 -- Table structure for table `matchpoint_components`
1104 --
1105 DROP TABLE IF EXISTS `matchpoint_components`;
1106 CREATE TABLE `matchpoint_components` (
1107   `matchpoint_id` int(11) NOT NULL,
1108   `matchpoint_component_id` int(11) NOT NULL auto_increment,
1109   sequence int(11) NOT NULL default 0,
1110   tag varchar(3) NOT NULL default '',
1111   subfields varchar(40) NOT NULL default '',
1112   offset int(4) NOT NULL default 0,
1113   length int(4) NOT NULL default 0,
1114   PRIMARY KEY (`matchpoint_component_id`),
1115   KEY `by_sequence` (`matchpoint_id`, `sequence`),
1116   CONSTRAINT `matchpoint_components_ifbk_1` FOREIGN KEY (`matchpoint_id`)
1117   REFERENCES `matchpoints` (`matchpoint_id`) ON DELETE CASCADE ON UPDATE CASCADE
1118 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1119
1120 --
1121 -- Table structure for table `matcher_component_norms`
1122 --
1123 DROP TABLE IF EXISTS `matchpoint_component_norms`;
1124 CREATE TABLE `matchpoint_component_norms` (
1125   `matchpoint_component_id` int(11) NOT NULL,
1126   `sequence`  int(11) NOT NULL default 0,
1127   `norm_routine` varchar(50) NOT NULL default '',
1128   KEY `matchpoint_component_norms` (`matchpoint_component_id`, `sequence`),
1129   CONSTRAINT `matchpoint_component_norms_ifbk_1` FOREIGN KEY (`matchpoint_component_id`)
1130   REFERENCES `matchpoint_components` (`matchpoint_component_id`) ON DELETE CASCADE ON UPDATE CASCADE
1131 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1132
1133 --
1134 -- Table structure for table `matcher_matchpoints`
1135 --
1136 DROP TABLE IF EXISTS `matcher_matchpoints`;
1137 CREATE TABLE `matcher_matchpoints` (
1138   `matcher_id` int(11) NOT NULL,
1139   `matchpoint_id` int(11) NOT NULL,
1140   CONSTRAINT `matcher_matchpoints_ifbk_1` FOREIGN KEY (`matcher_id`)
1141   REFERENCES `marc_matchers` (`matcher_id`) ON DELETE CASCADE ON UPDATE CASCADE,
1142   CONSTRAINT `matcher_matchpoints_ifbk_2` FOREIGN KEY (`matchpoint_id`)
1143   REFERENCES `matchpoints` (`matchpoint_id`) ON DELETE CASCADE ON UPDATE CASCADE
1144 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1145
1146 --
1147 -- Table structure for table `matchchecks`
1148 --
1149 DROP TABLE IF EXISTS `matchchecks`;
1150 CREATE TABLE `matchchecks` (
1151   `matcher_id` int(11) NOT NULL,
1152   `matchcheck_id` int(11) NOT NULL auto_increment,
1153   `source_matchpoint_id` int(11) NOT NULL,
1154   `target_matchpoint_id` int(11) NOT NULL,
1155   PRIMARY KEY (`matchcheck_id`),
1156   CONSTRAINT `matcher_matchchecks_ifbk_1` FOREIGN KEY (`matcher_id`)
1157   REFERENCES `marc_matchers` (`matcher_id`) ON DELETE CASCADE ON UPDATE CASCADE,
1158   CONSTRAINT `matcher_matchchecks_ifbk_2` FOREIGN KEY (`source_matchpoint_id`)
1159   REFERENCES `matchpoints` (`matchpoint_id`) ON DELETE CASCADE ON UPDATE CASCADE,
1160   CONSTRAINT `matcher_matchchecks_ifbk_3` FOREIGN KEY (`target_matchpoint_id`)
1161   REFERENCES `matchpoints` (`matchpoint_id`) ON DELETE CASCADE ON UPDATE CASCADE
1162 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1163
1164 --
1165 -- Table structure for table `need_merge_authorities`
1166 --
1167
1168 DROP TABLE IF EXISTS `need_merge_authorities`;
1169 CREATE TABLE `need_merge_authorities` ( -- keeping track of authority records still to be merged by merge_authority cron job
1170   `id` int NOT NULL auto_increment PRIMARY KEY, -- unique id
1171   `authid` bigint NOT NULL, -- reference to original authority record
1172   `authid_new` bigint, -- reference to optional new authority record
1173   `reportxml` MEDIUMTEXT, -- xml showing original reporting tag
1174   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, -- date and time last modified
1175   `done` tinyint DEFAULT 0  -- indication whether merge has been executed (0=not done, 1=done, 2=in progress)
1176 -- Note: authid and authid_new should NOT be FOREIGN keys !
1177 -- authid may have been deleted; authid_new may be zero
1178 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1179
1180 --
1181 -- Table structure for table `oai_sets`
1182 --
1183
1184 DROP TABLE IF EXISTS `oai_sets`;
1185 CREATE TABLE `oai_sets` (
1186   `id` int(11) NOT NULL auto_increment,
1187   `spec` varchar(80) NOT NULL UNIQUE,
1188   `name` varchar(80) NOT NULL,
1189   PRIMARY KEY (`id`)
1190 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1191
1192 --
1193 -- Table structure for table `oai_sets_descriptions`
1194 --
1195
1196 DROP TABLE IF EXISTS `oai_sets_descriptions`;
1197 CREATE TABLE `oai_sets_descriptions` (
1198   `set_id` int(11) NOT NULL,
1199   `description` varchar(255) NOT NULL,
1200   CONSTRAINT `oai_sets_descriptions_ibfk_1` FOREIGN KEY (`set_id`) REFERENCES `oai_sets` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
1201 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1202
1203 --
1204 -- Table structure for table `oai_sets_mappings`
1205 --
1206
1207 DROP TABLE IF EXISTS `oai_sets_mappings`;
1208 CREATE TABLE `oai_sets_mappings` (
1209   `set_id` int(11) NOT NULL,
1210   `rule_order` int NULL,
1211   `rule_operator` varchar(3) NULL,
1212   `marcfield` char(3) NOT NULL,
1213   `marcsubfield` char(1) NOT NULL,
1214   `operator` varchar(8) NOT NULL default 'equal',
1215   `marcvalue` varchar(80) NOT NULL,
1216   CONSTRAINT `oai_sets_mappings_ibfk_1` FOREIGN KEY (`set_id`) REFERENCES `oai_sets` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
1217 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1218
1219 --
1220 -- Table structure for table `oai_sets_biblios`
1221 --
1222
1223 DROP TABLE IF EXISTS `oai_sets_biblios`;
1224 CREATE TABLE `oai_sets_biblios` (
1225   `biblionumber` int(11) NOT NULL,
1226   `set_id` int(11) NOT NULL,
1227   PRIMARY KEY (`biblionumber`, `set_id`),
1228   CONSTRAINT `oai_sets_biblios_ibfk_2` FOREIGN KEY (`set_id`) REFERENCES `oai_sets` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
1229 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1230
1231 --
1232 -- Table structure for table `overduerules`
1233 --
1234
1235 DROP TABLE IF EXISTS `overduerules`;
1236 CREATE TABLE `overduerules` ( -- overdue notice status and triggers
1237   `overduerules_id` int(11) NOT NULL AUTO_INCREMENT, -- unique identifier for the overduerules
1238   `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)
1239   `categorycode` varchar(10) NOT NULL default '', -- foreign key from the categories table to define which patron category this rule is for
1240   `delay1` int(4) default NULL, -- number of days after the item is overdue that the first notice is sent
1241   `letter1` varchar(20) default NULL, -- foreign key from the letter table to define which notice should be sent as the first notice
1242   `debarred1` varchar(1) default 0, -- is the patron restricted when the first notice is sent (1 for yes, 0 for no)
1243   `delay2` int(4) default NULL, -- number of days after the item is overdue that the second notice is sent
1244   `debarred2` varchar(1) default 0, -- is the patron restricted when the second notice is sent (1 for yes, 0 for no)
1245   `letter2` varchar(20) default NULL, -- foreign key from the letter table to define which notice should be sent as the second notice
1246   `delay3` int(4) default NULL, -- number of days after the item is overdue that the third notice is sent
1247   `letter3` varchar(20) default NULL, -- foreign key from the letter table to define which notice should be sent as the third notice
1248   `debarred3` int(1) default 0, -- is the patron restricted when the third notice is sent (1 for yes, 0 for no)
1249   PRIMARY KEY  (`overduerules_id`),
1250   UNIQUE KEY `overduerules_branch_cat` (`branchcode`,`categorycode`)
1251 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1252
1253 -- Table structure for table `pending_offline_operations`
1254 --
1255 -- this table is MyISAM, InnoDB tables are growing only and this table is filled/emptied/filled/emptied...
1256 -- so MyISAM is better in this case
1257
1258 DROP TABLE IF EXISTS `pending_offline_operations`;
1259 CREATE TABLE pending_offline_operations (
1260   operationid int(11) NOT NULL AUTO_INCREMENT,
1261   userid varchar(30) NOT NULL,
1262   branchcode varchar(10) NOT NULL,
1263   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
1264   `action` varchar(10) NOT NULL,
1265   barcode varchar(20) DEFAULT NULL,
1266   cardnumber varchar(32) DEFAULT NULL,
1267   amount decimal(28,6) DEFAULT NULL,
1268   PRIMARY KEY (operationid)
1269 ) ENGINE=MyISAM  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1270
1271 --
1272 -- Table structure for table `printers_profile`
1273 --
1274
1275 DROP TABLE IF EXISTS `printers_profile`;
1276 CREATE TABLE `printers_profile` (
1277   `profile_id` int(4) NOT NULL auto_increment,
1278   `printer_name` varchar(40) NOT NULL default 'Default Printer',
1279   `template_id` int(4) NOT NULL default '0',
1280   `paper_bin` varchar(20) NOT NULL default 'Bypass',
1281   `offset_horz` float NOT NULL default '0',
1282   `offset_vert` float NOT NULL default '0',
1283   `creep_horz` float NOT NULL default '0',
1284   `creep_vert` float NOT NULL default '0',
1285   `units` char(20) NOT NULL default 'POINT',
1286   `creator` char(15) NOT NULL DEFAULT 'Labels',
1287   PRIMARY KEY  (`profile_id`),
1288   UNIQUE KEY `printername` (`printer_name`,`template_id`,`paper_bin`,`creator`)
1289 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1290
1291 --
1292 -- Table structure for table `repeatable_holidays`
1293 --
1294
1295 DROP TABLE IF EXISTS `repeatable_holidays`;
1296 CREATE TABLE `repeatable_holidays` ( -- information for the days the library is closed
1297   `id` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
1298   `branchcode` varchar(10) NOT NULL, -- foreign key from the branches table, defines which branch this closing is for
1299   `weekday` smallint(6) default NULL, -- day of the week (0=Sunday, 1=Monday, etc) this closing is repeated on
1300   `day` smallint(6) default NULL, -- day of the month this closing is on
1301   `month` smallint(6) default NULL, -- month this closing is in
1302   `title` varchar(50) NOT NULL default '', -- title of this closing
1303   `description` MEDIUMTEXT NOT NULL, -- description for this closing
1304   PRIMARY KEY  (`id`),
1305   CONSTRAINT `repeatable_holidays_ibfk_1` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE
1306 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1307
1308 --
1309 -- Table structure for table `reports_dictionary`
1310 --
1311
1312 DROP TABLE IF EXISTS `reports_dictionary`;
1313 CREATE TABLE reports_dictionary ( -- definitions (or snippets of SQL) stored for use in reports
1314    `id` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
1315    `name` varchar(255) default NULL, -- name for this definition
1316    `description` MEDIUMTEXT, -- description for this definition
1317    `date_created` datetime default NULL, -- date and time this definition was created
1318    `date_modified` datetime default NULL, -- date and time this definition was last modified
1319    `saved_sql` MEDIUMTEXT, -- SQL snippet for us in reports
1320    report_area varchar(6) DEFAULT NULL, -- Koha module this definition is for Circulation, Catalog, Patrons, Acquistions, Accounts)
1321    PRIMARY KEY  (id),
1322    KEY dictionary_area_idx (report_area)
1323 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1324
1325 --
1326 -- Table structure for table `saved_sql`
1327 --
1328
1329 DROP TABLE IF EXISTS `saved_sql`;
1330 CREATE TABLE saved_sql ( -- saved sql reports
1331    `id` int(11) NOT NULL auto_increment, -- unique id and primary key assigned by Koha
1332    `borrowernumber` int(11) default NULL, -- the staff member who created this report (borrowers.borrowernumber)
1333    `date_created` datetime default NULL, -- the date this report was created
1334    `last_modified` datetime default NULL, -- the date this report was last edited
1335    `savedsql` MEDIUMTEXT, -- the SQL for this report
1336    `last_run` datetime default NULL,
1337    `report_name` varchar(255) NOT NULL default '', -- the name of this report
1338    `type` varchar(255) default NULL, -- always 1 for tabular
1339    `notes` MEDIUMTEXT, -- the notes or description given to this report
1340    `cache_expiry` int NOT NULL default 300,
1341    `public` tinyint(1) NOT NULL default FALSE,
1342     report_area varchar(6) default NULL,
1343     report_group varchar(80) default NULL,
1344     report_subgroup varchar(80) default NULL,
1345     `mana_id` int(11) NULL DEFAULT NULL,
1346    PRIMARY KEY  (`id`),
1347    KEY sql_area_group_idx (report_group, report_subgroup),
1348    KEY boridx (`borrowernumber`)
1349 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1350
1351
1352 --
1353 -- Table structure for `saved_reports`
1354 --
1355
1356 DROP TABLE IF EXISTS `saved_reports`;
1357 CREATE TABLE saved_reports (
1358    `id` int(11) NOT NULL auto_increment,
1359    `report_id` int(11) default NULL,
1360    `report` LONGTEXT,
1361    `date_run` datetime default NULL,
1362    PRIMARY KEY (`id`)
1363 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1364
1365 --
1366 -- Table structure for table 'search_field'
1367 --
1368
1369 DROP TABLE IF EXISTS search_field;
1370 CREATE TABLE `search_field` (
1371   `id` int(11) NOT NULL AUTO_INCREMENT,
1372   `name` varchar(255) NOT NULL COMMENT 'the name of the field as it will be stored in the search engine',
1373   `label` varchar(255) NOT NULL COMMENT 'the human readable name of the field, for display',
1374   `type` ENUM('', 'string', 'date', 'number', 'boolean', 'sum', 'isbn', 'stdno') NOT NULL COMMENT 'what type of data this holds, relevant when storing it in the search engine',
1375   `weight` decimal(5,2) DEFAULT NULL,
1376   `facet_order` TINYINT(4) DEFAULT NULL COMMENT 'the order place of the field in facet list if faceted',
1377   `staff_client` tinyint(1) NOT NULL DEFAULT 1,
1378   `opac` tinyint(1) NOT NULL DEFAULT 1,
1379   PRIMARY KEY (`id`),
1380   UNIQUE KEY (`name` (191))
1381 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1382
1383 --
1384 -- Table structure for table `search_history`
1385 --
1386
1387 DROP TABLE IF EXISTS `search_history`;
1388 CREATE TABLE IF NOT EXISTS `search_history` ( -- patron's opac search history
1389   `id` int(11) NOT NULL auto_increment, -- search history id
1390   `userid` int(11) NOT NULL, -- the patron who performed the search (borrowers.borrowernumber)
1391   `sessionid` varchar(32) NOT NULL, -- a system generated session id
1392   `query_desc` varchar(255) NOT NULL, -- the search that was performed
1393   `query_cgi` MEDIUMTEXT NOT NULL, -- the string to append to the search url to rerun the search
1394   `type` varchar(16) NOT NULL DEFAULT 'biblio', -- search type, must be 'biblio' or 'authority'
1395   `total` int(11) NOT NULL, -- the total of results found
1396   `time` timestamp NOT NULL default CURRENT_TIMESTAMP, -- the date and time the search was run
1397   KEY `userid` (`userid`),
1398   KEY `sessionid` (`sessionid`),
1399   PRIMARY KEY (`id`)
1400 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Opac search history results';
1401
1402 --
1403 -- Table structure for table 'search_marc_map'
1404 --
1405
1406 DROP TABLE IF EXISTS search_marc_map;
1407 CREATE TABLE `search_marc_map` (
1408   id int(11) NOT NULL AUTO_INCREMENT,
1409   index_name ENUM('biblios','authorities') NOT NULL COMMENT 'what storage index this map is for',
1410   marc_type ENUM('marc21', 'unimarc', 'normarc') COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'what MARC type this map is for',
1411   marc_field VARCHAR(255) NOT NULL COLLATE utf8mb4_bin COMMENT 'the MARC specifier for this field',
1412   PRIMARY KEY(`id`),
1413   UNIQUE key `index_name` (`index_name`, `marc_field` (191), `marc_type`),
1414   INDEX (`index_name`)
1415 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1416
1417 --
1418 -- Table structure for table 'search_marc_to_field'
1419 --
1420
1421 DROP TABLE IF EXISTS search_marc_to_field;
1422 CREATE TABLE `search_marc_to_field` (
1423   search tinyint(1) NOT NULL DEFAULT 1,
1424   search_marc_map_id int(11) NOT NULL,
1425   search_field_id int(11) NOT NULL,
1426   facet tinyint(1) DEFAULT FALSE COMMENT 'true if a facet field should be generated for this',
1427   suggestible tinyint(1) DEFAULT FALSE COMMENT 'true if this field can be used to generate suggestions for browse',
1428   sort tinyint(1) DEFAULT NULL COMMENT 'true/false creates special sort handling, null doesn''t',
1429   PRIMARY KEY(search_marc_map_id, search_field_id),
1430   FOREIGN KEY(search_marc_map_id) REFERENCES search_marc_map(id) ON DELETE CASCADE ON UPDATE CASCADE,
1431   FOREIGN KEY(search_field_id) REFERENCES search_field(id) ON DELETE CASCADE ON UPDATE CASCADE
1432 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1433
1434 --
1435 -- Table structure for table `sessions`
1436 --
1437
1438 DROP TABLE IF EXISTS sessions;
1439 CREATE TABLE sessions (
1440   `id` varchar(32) NOT NULL,
1441   `a_session` LONGTEXT NOT NULL,
1442   PRIMARY KEY (`id`)
1443 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1444
1445 --
1446 -- Table structure for table `sms_providers`
1447 --
1448
1449 DROP TABLE IF EXISTS sms_providers;
1450 CREATE TABLE `sms_providers` (
1451   `id` int(11) NOT NULL AUTO_INCREMENT,
1452   `name` varchar(255) NOT NULL,
1453   `domain` varchar(255) NOT NULL,
1454   PRIMARY KEY (`id`),
1455   UNIQUE KEY `name` (`name` (191))
1456 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1457
1458 --
1459 -- Table structure for table `borrowers`
1460 --
1461
1462 DROP TABLE IF EXISTS `borrowers`;
1463 CREATE TABLE `borrowers` ( -- this table includes information about your patrons/borrowers/members
1464   `borrowernumber` int(11) NOT NULL auto_increment, -- primary key, Koha assigned ID number for patrons/borrowers
1465   `cardnumber` varchar(32) default NULL, -- unique key, library assigned ID number for patrons/borrowers
1466   `surname` LONGTEXT, -- patron/borrower's last name (surname)
1467   `firstname` MEDIUMTEXT, -- patron/borrower's first name
1468   `title` LONGTEXT, -- patron/borrower's title, for example: Mr. or Mrs.
1469   `othernames` LONGTEXT, -- any other names associated with the patron/borrower
1470   `initials` MEDIUMTEXT, -- initials for your patron/borrower
1471   `streetnumber` TINYTEXT default NULL, -- the house number for your patron/borrower's primary address
1472   `streettype` TINYTEXT default NULL, -- the street type (Rd., Blvd, etc) for your patron/borrower's primary address
1473   `address` LONGTEXT, -- the first address line for your patron/borrower's primary address
1474   `address2` MEDIUMTEXT, -- the second address line for your patron/borrower's primary address
1475   `city` LONGTEXT, -- the city or town for your patron/borrower's primary address
1476   `state` MEDIUMTEXT default NULL, -- the state or province for your patron/borrower's primary address
1477   `zipcode` TINYTEXT default NULL, -- the zip or postal code for your patron/borrower's primary address
1478   `country` MEDIUMTEXT, -- the country for your patron/borrower's primary address
1479   `email` LONGTEXT, -- the primary email address for your patron/borrower's primary address
1480   `phone` MEDIUMTEXT, -- the primary phone number for your patron/borrower's primary address
1481   `mobile` TINYTEXT default NULL, -- the other phone number for your patron/borrower's primary address
1482   `fax` LONGTEXT, -- the fax number for your patron/borrower's primary address
1483   `emailpro` MEDIUMTEXT, -- the secondary email addres for your patron/borrower's primary address
1484   `phonepro` MEDIUMTEXT, -- the secondary phone number for your patron/borrower's primary address
1485   `B_streetnumber` TINYTEXT default NULL, -- the house number for your patron/borrower's alternate address
1486   `B_streettype` TINYTEXT default NULL, -- the street type (Rd., Blvd, etc) for your patron/borrower's alternate address
1487   `B_address` MEDIUMTEXT default NULL, -- the first address line for your patron/borrower's alternate address
1488   `B_address2` MEDIUMTEXT default NULL, -- the second address line for your patron/borrower's alternate address
1489   `B_city` LONGTEXT, -- the city or town for your patron/borrower's alternate address
1490   `B_state` MEDIUMTEXT default NULL, -- the state for your patron/borrower's alternate address
1491   `B_zipcode` TINYTEXT default NULL, -- the zip or postal code for your patron/borrower's alternate address
1492   `B_country` MEDIUMTEXT, -- the country for your patron/borrower's alternate address
1493   `B_email` MEDIUMTEXT, -- the patron/borrower's alternate email address
1494   `B_phone` LONGTEXT, -- the patron/borrower's alternate phone number
1495   `dateofbirth` date default NULL, -- the patron/borrower's date of birth (YYYY-MM-DD)
1496   `branchcode` varchar(10) NOT NULL default '', -- foreign key from the branches table, includes the code of the patron/borrower's home branch
1497   `categorycode` varchar(10) NOT NULL default '', -- foreign key from the categories table, includes the code of the patron category
1498   `dateenrolled` date default NULL, -- date the patron was added to Koha (YYYY-MM-DD)
1499   `dateexpiry` date default NULL, -- date the patron/borrower's card is set to expire (YYYY-MM-DD)
1500   `date_renewed` date default NULL, -- date the patron/borrower's card was last renewed
1501   `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
1502   `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
1503   `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 (YYYY-MM-DD)
1504   `debarredcomment` VARCHAR(255) DEFAULT NULL, -- comment on the stop of the patron
1505   `contactname` LONGTEXT, -- used for children and profesionals to include surname or last name of guarantor or organization name
1506   `contactfirstname` MEDIUMTEXT, -- used for children to include first name of guarantor
1507   `contacttitle` MEDIUMTEXT, -- used for children to include title (Mr., Mrs., etc) of guarantor
1508   `borrowernotes` LONGTEXT, -- a note on the patron/borrower's account that is only visible in the staff interface
1509   `relationship` varchar(100) default NULL, -- used for children to include the relationship to their guarantor
1510   `sex` varchar(1) default NULL, -- patron/borrower's gender
1511   `password` varchar(60) default NULL, -- patron/borrower's Bcrypt encrypted password
1512   `flags` int(11) default NULL, -- will include a number associated with the staff member's permissions
1513   `userid` varchar(75) default NULL, -- patron/borrower's opac and/or staff interface log in
1514   `opacnote` LONGTEXT, -- a note on the patron/borrower's account that is visible in the OPAC and staff interface
1515   `contactnote` varchar(255) default NULL, -- a note related to the patron/borrower's alternate address
1516   `sort1` varchar(80) default NULL, -- a field that can be used for any information unique to the library
1517   `sort2` varchar(80) default NULL, -- a field that can be used for any information unique to the library
1518   `altcontactfirstname` MEDIUMTEXT  default NULL, -- first name of alternate contact for the patron/borrower
1519   `altcontactsurname` MEDIUMTEXT default NULL, -- surname or last name of the alternate contact for the patron/borrower
1520   `altcontactaddress1` MEDIUMTEXT default NULL, -- the first address line for the alternate contact for the patron/borrower
1521   `altcontactaddress2` MEDIUMTEXT default NULL, -- the second address line for the alternate contact for the patron/borrower
1522   `altcontactaddress3` MEDIUMTEXT default NULL, -- the city for the alternate contact for the patron/borrower
1523   `altcontactstate` MEDIUMTEXT default NULL, -- the state for the alternate contact for the patron/borrower
1524   `altcontactzipcode` MEDIUMTEXT default NULL, -- the zipcode for the alternate contact for the patron/borrower
1525   `altcontactcountry` MEDIUMTEXT default NULL, -- the country for the alternate contact for the patron/borrower
1526   `altcontactphone` MEDIUMTEXT default NULL, -- the phone number for the alternate contact for the patron/borrower
1527   `smsalertnumber` varchar(50) default NULL, -- the mobile phone number where the patron/borrower would like to receive notices (if SMS turned on)
1528   `sms_provider_id` int(11) DEFAULT NULL, -- the provider of the mobile phone number defined in smsalertnumber
1529   `privacy` integer(11) DEFAULT '1' NOT NULL, -- patron/borrower's privacy settings related to their reading history
1530   `privacy_guarantor_fines` tinyint(1) NOT NULL DEFAULT '0', -- controls if relatives can see this patron's fines
1531   `privacy_guarantor_checkouts` tinyint(1) NOT NULL DEFAULT '0', -- controls if relatives can see this patron's checkouts
1532   `checkprevcheckout` varchar(7) NOT NULL default 'inherit', -- produce a warning for this patron if this item has previously been checked out to this patron if 'yes', not if 'no', defer to category setting if 'inherit'.
1533   `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)
1534   `lastseen` datetime default NULL, -- last time a patron has been seen (connected at the OPAC or staff interface)
1535   `lang` varchar(25) NOT NULL default 'default', -- lang to use to send notices to this patron
1536   `login_attempts` int(4) NOT NULL default 0, -- number of failed login attemps
1537   `overdrive_auth_token` MEDIUMTEXT default NULL, -- persist OverDrive auth token
1538   `anonymized` TINYINT(1) NOT NULL DEFAULT 0, -- flag for data anonymization
1539   `autorenew_checkouts` TINYINT(1) NOT NULL DEFAULT 1, -- flag for allowing auto-renewal
1540   UNIQUE KEY `cardnumber` (`cardnumber`),
1541   PRIMARY KEY `borrowernumber` (`borrowernumber`),
1542   KEY `categorycode` (`categorycode`),
1543   KEY `branchcode` (`branchcode`),
1544   UNIQUE KEY `userid` (`userid`),
1545   KEY `surname_idx` (`surname` (191)),
1546   KEY `firstname_idx` (`firstname` (191)),
1547   KEY `othernames_idx` (`othernames` (191)),
1548   KEY `sms_provider_id` (`sms_provider_id`),
1549   CONSTRAINT `borrowers_ibfk_1` FOREIGN KEY (`categorycode`) REFERENCES `categories` (`categorycode`),
1550   CONSTRAINT `borrowers_ibfk_2` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`),
1551   CONSTRAINT `borrowers_ibfk_3` FOREIGN KEY (`sms_provider_id`) REFERENCES `sms_providers` (`id`) ON UPDATE CASCADE ON DELETE SET NULL
1552 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1553
1554 --
1555 -- Table structure for table `borrower_attributes`
1556 --
1557
1558 DROP TABLE IF EXISTS `borrower_attributes`;
1559 CREATE TABLE `borrower_attributes` ( -- values of custom patron fields known as extended patron attributes linked to patrons/borrowers
1560   `id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, -- Row id field
1561   `borrowernumber` int(11) NOT NULL, -- foreign key from the borrowers table, defines which patron/borrower has this attribute
1562   `code` varchar(10) NOT NULL, -- foreign key from the borrower_attribute_types table, defines which custom field this value was entered for
1563   `attribute` varchar(255) default NULL, -- custom patron field value
1564   KEY `borrowernumber` (`borrowernumber`),
1565   KEY `code_attribute` (`code`, `attribute` (191)),
1566   CONSTRAINT `borrower_attributes_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`)
1567     ON DELETE CASCADE ON UPDATE CASCADE,
1568   CONSTRAINT `borrower_attributes_ibfk_2` FOREIGN KEY (`code`) REFERENCES `borrower_attribute_types` (`code`)
1569     ON DELETE CASCADE ON UPDATE CASCADE
1570 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1571
1572 --
1573 -- Table structure for table `borrower_debarments`
1574 --
1575
1576 DROP TABLE IF EXISTS `borrower_debarments`;
1577 CREATE TABLE borrower_debarments ( -- tracks restrictions on the patron's record
1578   borrower_debarment_id int(11) NOT NULL AUTO_INCREMENT, -- unique key for the restriction
1579   borrowernumber int(11) NOT NULL, -- foreign key for borrowers.borrowernumber for patron who is restricted
1580   expiration date DEFAULT NULL, -- expiration date of the restriction
1581   `type` enum('SUSPENSION','OVERDUES','MANUAL','DISCHARGE') NOT NULL DEFAULT 'MANUAL', -- type of restriction
1582   `comment` MEDIUMTEXT, -- comments about the restriction
1583   manager_id int(11) DEFAULT NULL, -- foreign key for borrowers.borrowernumber for the librarian managing the restriction
1584   created timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, -- date the restriction was added
1585   updated timestamp NULL DEFAULT NULL, -- date the restriction was updated
1586   PRIMARY KEY (borrower_debarment_id),
1587   KEY borrowernumber (borrowernumber),
1588   CONSTRAINT `borrower_debarments_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`)
1589     ON DELETE CASCADE ON UPDATE CASCADE
1590 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1591
1592 --
1593 -- Table structure for table api_keys
1594 --
1595
1596 DROP TABLE IF EXISTS `api_keys`;
1597 CREATE TABLE `api_keys` (
1598     `client_id`   VARCHAR(191) NOT NULL,           -- API client ID
1599     `secret`      VARCHAR(191) NOT NULL,           -- API client secret used for API authentication
1600     `description` VARCHAR(255) NOT NULL,           -- API client description
1601     `patron_id`   INT(11) NOT NULL,                -- Foreign key to the borrowers table
1602     `active`      TINYINT(1) DEFAULT 1 NOT NULL,   -- 0 means this API key is revoked
1603     PRIMARY KEY `client_id` (`client_id`),
1604     UNIQUE KEY `secret` (`secret`),
1605     KEY `patron_id` (`patron_id`),
1606     CONSTRAINT `api_keys_fk_patron_id`
1607       FOREIGN KEY (`patron_id`)
1608       REFERENCES `borrowers` (`borrowernumber`)
1609       ON DELETE CASCADE ON UPDATE CASCADE
1610 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1611
1612 --
1613 -- Table structure for table `issues`
1614 --
1615
1616 DROP TABLE IF EXISTS `issues`;
1617 CREATE TABLE `issues` ( -- information related to check outs or issues
1618   `issue_id` int(11) NOT NULL AUTO_INCREMENT, -- primary key for issues table
1619   `borrowernumber` int(11), -- foreign key, linking this to the borrowers table for the patron this item was checked out to
1620   `itemnumber` int(11), -- foreign key, linking this to the items table for the item that was checked out
1621   `date_due` datetime default NULL, -- datetime the item is due (yyyy-mm-dd hh:mm::ss)
1622   `branchcode` varchar(10) default NULL, -- foreign key, linking to the branches table for the location the item was checked out
1623   `returndate` datetime default NULL, -- date the item was returned, will be NULL until moved to old_issues
1624   `lastreneweddate` datetime default NULL, -- date the item was last renewed
1625   `renewals` tinyint(4) NOT NULL default 0, -- lists the number of times the item was renewed
1626   `auto_renew` tinyint(1) default FALSE, -- automatic renewal
1627   `auto_renew_error` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, -- automatic renewal error
1628   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this record was last touched
1629   `issuedate` datetime default NULL, -- date the item was checked out or issued
1630   `onsite_checkout` int(1) NOT NULL default 0, -- in house use flag
1631   `note` LONGTEXT default NULL, -- issue note text
1632   `notedate` datetime default NULL, -- datetime of issue note (yyyy-mm-dd hh:mm::ss)
1633   `noteseen` int(1) default NULL, -- describes whether checkout note has been seen 1, not been seen 0 or doesn't exist null
1634   PRIMARY KEY (`issue_id`),
1635   UNIQUE KEY `itemnumber` (`itemnumber`),
1636   KEY `issuesborridx` (`borrowernumber`),
1637   KEY `itemnumber_idx` (`itemnumber`),
1638   KEY `branchcode_idx` (`branchcode`),
1639   KEY `bordate` (`borrowernumber`,`timestamp`),
1640   CONSTRAINT `issues_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE RESTRICT ON UPDATE CASCADE,
1641   CONSTRAINT `issues_ibfk_2` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE RESTRICT ON UPDATE CASCADE
1642 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1643
1644 --
1645 -- Table structure for table `old_issues`
1646 --
1647
1648 DROP TABLE IF EXISTS `old_issues`;
1649 CREATE TABLE `old_issues` ( -- lists items that were checked out and have been returned
1650   `issue_id` int(11) NOT NULL, -- primary key for issues table
1651   `borrowernumber` int(11) default NULL, -- foreign key, linking this to the borrowers table for the patron this item was checked out to
1652   `itemnumber` int(11) default NULL, -- foreign key, linking this to the items table for the item that was checked out
1653   `date_due` datetime default NULL, -- date the item is due (yyyy-mm-dd)
1654   `branchcode` varchar(10) default NULL, -- foreign key, linking to the branches table for the location the item was checked out
1655   `returndate` datetime default NULL, -- date the item was returned
1656   `lastreneweddate` datetime default NULL, -- date the item was last renewed
1657   `renewals` tinyint(4) NOT NULL default 0, -- lists the number of times the item was renewed
1658   `auto_renew` tinyint(1) default FALSE, -- automatic renewal
1659   `auto_renew_error` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, -- automatic renewal error
1660   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this record was last touched
1661   `issuedate` datetime default NULL, -- date the item was checked out or issued
1662   `onsite_checkout` int(1) NOT NULL default 0, -- in house use flag
1663   `note` LONGTEXT default NULL, -- issue note text
1664   `notedate` datetime default NULL, -- datetime of issue note (yyyy-mm-dd hh:mm::ss)
1665   `noteseen` int(1) default NULL, -- describes whether checkout note has been seen 1, not been seen 0 or doesn't exist null
1666   PRIMARY KEY (`issue_id`),
1667   KEY `old_issuesborridx` (`borrowernumber`),
1668   KEY `old_issuesitemidx` (`itemnumber`),
1669   KEY `branchcode_idx` (`branchcode`),
1670   KEY `old_bordate` (`borrowernumber`,`timestamp`),
1671   CONSTRAINT `old_issues_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`)
1672     ON DELETE SET NULL ON UPDATE SET NULL,
1673   CONSTRAINT `old_issues_ibfk_2` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`)
1674     ON DELETE SET NULL ON UPDATE SET NULL
1675 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1676
1677 --
1678 -- Table structure for table `items_last_borrower`
1679 --
1680
1681 CREATE TABLE IF NOT EXISTS `items_last_borrower` (
1682   `id` int(11) NOT NULL AUTO_INCREMENT,
1683   `itemnumber` int(11) NOT NULL,
1684   `borrowernumber` int(11) NOT NULL,
1685   `created_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
1686   PRIMARY KEY (`id`),
1687   UNIQUE KEY `itemnumber` (`itemnumber`),
1688   KEY `borrowernumber` (`borrowernumber`),
1689   CONSTRAINT `items_last_borrower_ibfk_2` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1690   CONSTRAINT `items_last_borrower_ibfk_1` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE
1691 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1692
1693 --
1694 -- Table structure for table `creator_batches`
1695 --
1696
1697 DROP TABLE IF EXISTS `creator_batches`;
1698 SET @saved_cs_client     = @@character_set_client;
1699 SET character_set_client = utf8;
1700 CREATE TABLE `creator_batches` (
1701   `label_id` int(11) NOT NULL AUTO_INCREMENT,
1702   `batch_id` int(10) NOT NULL DEFAULT '1',
1703   `description` mediumtext DEFAULT NULL,
1704   `item_number` int(11) DEFAULT NULL,
1705   `borrower_number` int(11) DEFAULT NULL,
1706   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
1707   `branch_code` varchar(10) NOT NULL DEFAULT 'NB',
1708   `creator` char(15) NOT NULL DEFAULT 'Labels',
1709   PRIMARY KEY (`label_id`),
1710   KEY `branch_fk_constraint` (`branch_code`),
1711   KEY `item_fk_constraint` (`item_number`),
1712   KEY `borrower_fk_constraint` (`borrower_number`),
1713   CONSTRAINT `creator_batches_ibfk_1` FOREIGN KEY (`borrower_number`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1714   CONSTRAINT `creator_batches_ibfk_2` FOREIGN KEY (`branch_code`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE,
1715   CONSTRAINT `creator_batches_ibfk_3` FOREIGN KEY (`item_number`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE
1716 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1717
1718 --
1719 -- Table structure for table `opac_news`
1720 --
1721
1722 DROP TABLE IF EXISTS `opac_news`;
1723 CREATE TABLE `opac_news` ( -- data from the news tool
1724   `idnew` int(10) unsigned NOT NULL auto_increment, -- unique identifier for the news article
1725   `branchcode` varchar(10) default NULL, -- branch code users to create branch specific news, NULL is every branch.
1726   `title` varchar(250) NOT NULL default '', -- title of the news article
1727   `content` MEDIUMTEXT NOT NULL, -- the body of your news article
1728   `lang` varchar(50) NOT NULL default '', -- location for the article (koha is the staff interface, slip is the circulation receipt and language codes are for the opac)
1729   `published_on` date DEFAULT NULL, -- publication date
1730   `updated_on` timestamp NOT NULL default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, -- last modification
1731   `expirationdate` date default NULL, -- date the article is set to expire or no longer be visible
1732   `number` int(11) default NULL, -- the order in which this article appears in that specific location
1733   `borrowernumber` int(11) default NULL, -- The user who created the news article
1734   PRIMARY KEY  (`idnew`),
1735   CONSTRAINT `borrowernumber_fk` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE,
1736   CONSTRAINT opac_news_branchcode_ibfk FOREIGN KEY (branchcode) REFERENCES branches (branchcode)
1737     ON DELETE CASCADE ON UPDATE CASCADE
1738 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1739
1740 --
1741 -- Table structure for table `patronimage`
1742 --
1743
1744 DROP TABLE IF EXISTS `patronimage`;
1745 CREATE TABLE `patronimage` ( -- information related to patron images
1746   `borrowernumber` int(11) NOT NULL, -- the borrowernumber of the patron this image is attached to (borrowers.borrowernumber)
1747   `mimetype` varchar(15) NOT NULL, -- the format of the image (png, jpg, etc)
1748   `imagefile` mediumblob NOT NULL, -- the image
1749   PRIMARY KEY  (`borrowernumber`),
1750   CONSTRAINT `patronimage_fk1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE
1751 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1752
1753 --
1754 -- Table structure for table `reserves`
1755 --
1756
1757 DROP TABLE IF EXISTS `reserves`;
1758 CREATE TABLE `reserves` ( -- information related to holds/reserves in Koha
1759   `reserve_id` int(11) NOT NULL auto_increment, -- primary key
1760   `borrowernumber` int(11) NOT NULL default 0, -- foreign key from the borrowers table defining which patron this hold is for
1761   `reservedate` date default NULL, -- the date the hold was placed
1762   `biblionumber` int(11) NOT NULL default 0, -- foreign key from the biblio table defining which bib record this hold is on
1763   `branchcode` varchar(10) default NULL, -- foreign key from the branches table defining which branch the patron wishes to pick this hold up at
1764   `notificationdate` date default NULL, -- currently unused
1765   `reminderdate` date default NULL, -- currently unused
1766   `cancellationdate` date default NULL, -- the date this hold was cancelled
1767   `cancellation_reason` varchar(80) default NULL, -- optional authorised value CANCELLATION_REASON
1768   `reservenotes` LONGTEXT, -- notes related to this hold
1769   `priority` smallint(6) NOT NULL DEFAULT 1, -- where in the queue the patron sits
1770   `found` varchar(1) default NULL, -- a one letter code defining what the status is of the hold is after it has been confirmed
1771   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this hold was last updated
1772   `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
1773   `waitingdate` date default NULL, -- the date the item was marked as waiting for the patron at the library
1774   `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)
1775   `lowestPriority` tinyint(1) NOT NULL DEFAULT 0,
1776   `suspend` tinyint(1) NOT NULL DEFAULT 0,
1777   `suspend_until` DATETIME NULL DEFAULT NULL,
1778   `itemtype` VARCHAR(10) NULL DEFAULT NULL, -- If record level hold, the optional itemtype of the item the patron is requesting
1779   `item_level_hold` tinyint(1) NOT NULL DEFAULT 0, -- Is the hpld placed at item level
1780   `non_priority` tinyint(1) NOT NULL DEFAULT 0, -- Is this a non priority hold
1781   PRIMARY KEY (`reserve_id`),
1782   KEY priorityfoundidx (priority,found),
1783   KEY `borrowernumber` (`borrowernumber`),
1784   KEY `biblionumber` (`biblionumber`),
1785   KEY `itemnumber` (`itemnumber`),
1786   KEY `branchcode` (`branchcode`),
1787   KEY `itemtype` (`itemtype`),
1788   CONSTRAINT `reserves_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1789   CONSTRAINT `reserves_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1790   CONSTRAINT `reserves_ibfk_3` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1791   CONSTRAINT `reserves_ibfk_4` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE,
1792   CONSTRAINT `reserves_ibfk_5` FOREIGN KEY (`itemtype`) REFERENCES `itemtypes` (`itemtype`) ON DELETE CASCADE ON UPDATE CASCADE
1793 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1794
1795 --
1796 -- Table structure for table `old_reserves`
1797 --
1798
1799 DROP TABLE IF EXISTS `old_reserves`;
1800 CREATE TABLE `old_reserves` ( -- this table holds all holds/reserves that have been completed (either filled or cancelled)
1801   `reserve_id` int(11) NOT NULL, -- primary key
1802   `borrowernumber` int(11) default NULL, -- foreign key from the borrowers table defining which patron this hold is for
1803   `reservedate` date default NULL, -- the date the hold was places
1804   `biblionumber` int(11) default NULL, -- foreign key from the biblio table defining which bib record this hold is on
1805   `branchcode` varchar(10) default NULL, -- foreign key from the branches table defining which branch the patron wishes to pick this hold up at
1806   `notificationdate` date default NULL, -- currently unused
1807   `reminderdate` date default NULL, -- currently unused
1808   `cancellationdate` date default NULL, -- the date this hold was cancelled
1809   `cancellation_reason` varchar(80) default NULL, -- optional authorised value CANCELLATION_REASON
1810   `reservenotes` LONGTEXT, -- notes related to this hold
1811   `priority` smallint(6) NOT NULL DEFAULT 1, -- where in the queue the patron sits
1812   `found` varchar(1) default NULL, -- a one letter code defining what the status is of the hold is after it has been confirmed
1813   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this hold was last updated
1814   `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
1815   `waitingdate` date default NULL, -- the date the item was marked as waiting for the patron at the library
1816   `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)
1817   `lowestPriority` tinyint(1) NOT NULL DEFAULT 0, -- has this hold been pinned to the lowest priority in the holds queue (1 for yes, 0 for no)
1818   `suspend` tinyint(1) NOT NULL DEFAULT 0, -- in this hold suspended (1 for yes, 0 for no)
1819   `suspend_until` DATETIME NULL DEFAULT NULL, -- the date this hold is suspended until (NULL for infinitely)
1820   `itemtype` VARCHAR(10) NULL DEFAULT NULL, -- If record level hold, the optional itemtype of the item the patron is requesting
1821   `item_level_hold` tinyint(1) NOT NULL DEFAULT 0, -- Is the hpld placed at item level
1822   `non_priority` tinyint(1) NOT NULL DEFAULT 0, -- Is this a non priority hold
1823   PRIMARY KEY (`reserve_id`),
1824   KEY `old_reserves_borrowernumber` (`borrowernumber`),
1825   KEY `old_reserves_biblionumber` (`biblionumber`),
1826   KEY `old_reserves_itemnumber` (`itemnumber`),
1827   KEY `old_reserves_branchcode` (`branchcode`),
1828   KEY `old_reserves_itemtype` (`itemtype`),
1829   CONSTRAINT `old_reserves_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`)
1830     ON DELETE SET NULL ON UPDATE SET NULL,
1831   CONSTRAINT `old_reserves_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`)
1832     ON DELETE SET NULL ON UPDATE SET NULL,
1833   CONSTRAINT `old_reserves_ibfk_3` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`)
1834     ON DELETE SET NULL ON UPDATE SET NULL,
1835   CONSTRAINT `old_reserves_ibfk_4` FOREIGN KEY (`itemtype`) REFERENCES `itemtypes` (`itemtype`)
1836     ON DELETE SET NULL ON UPDATE SET NULL
1837 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1838
1839 --
1840 -- Table structure for table `reviews`
1841 --
1842
1843 DROP TABLE IF EXISTS `reviews`;
1844 CREATE TABLE `reviews` ( -- patron opac comments
1845   `reviewid` int(11) NOT NULL auto_increment, -- unique identifier for this comment
1846   `borrowernumber` int(11) default NULL, -- foreign key from the borrowers table defining which patron left this comment
1847   `biblionumber` int(11) default NULL, -- foreign key from the biblio table defining which bibliographic record this comment is for
1848   `review` MEDIUMTEXT, -- the body of the comment
1849   `approved` tinyint(4) default 0, -- whether this comment has been approved by a librarian (1 for yes, 0 for no)
1850   `datereviewed` datetime default NULL, -- the date the comment was left
1851   PRIMARY KEY  (`reviewid`),
1852   CONSTRAINT `reviews_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE,
1853   CONSTRAINT `reviews_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE
1854 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1855
1856 --
1857 -- Table structure for table `special_holidays`
1858 --
1859
1860 DROP TABLE IF EXISTS `special_holidays`;
1861 CREATE TABLE `special_holidays` ( -- non repeatable holidays/library closings
1862   `id` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
1863   `branchcode` varchar(10) NOT NULL, -- foreign key from the branches table, defines which branch this closing is for
1864   `day` smallint(6) NOT NULL default 0, -- day of the month this closing is on
1865   `month` smallint(6) NOT NULL default 0, -- month this closing is in
1866   `year` smallint(6) NOT NULL default 0, -- year this closing is in
1867   `isexception` smallint(1) NOT NULL default 1, -- is this a holiday exception to a repeatable holiday (1 for yes, 0 for no)
1868   `title` varchar(50) NOT NULL default '', -- title for this closing
1869   `description` MEDIUMTEXT NOT NULL, -- description of this closing
1870   PRIMARY KEY  (`id`),
1871   CONSTRAINT `special_holidays_ibfk_1` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE
1872 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1873
1874 --
1875 -- Table structure for table `statistics`
1876 --
1877
1878 DROP TABLE IF EXISTS `statistics`;
1879 CREATE TABLE `statistics` ( -- information related to transactions (circulation and fines) in Koha
1880   `datetime` datetime default NULL, -- date and time of the transaction
1881   `branch` varchar(10) default NULL, -- foreign key, branch where the transaction occurred
1882   `value` double(16,4) default NULL, -- monetary value associated with the transaction
1883   `type` varchar(16) default NULL, -- transaction type (localuse, issue, return, renew, writeoff, payment)
1884   `other` LONGTEXT, -- used by SIP
1885   `itemnumber` int(11) default NULL, -- foreign key from the items table, links transaction to a specific item
1886   `itemtype` varchar(10) default NULL, -- foreign key from the itemtypes table, links transaction to a specific item type
1887   `location` varchar(80) default NULL, -- authorized value for the shelving location for this item (MARC21 952$c)
1888   `borrowernumber` int(11) default NULL, -- foreign key from the borrowers table, links transaction to a specific borrower
1889   `ccode` varchar(80) default NULL, -- foreign key from the items table, links transaction to a specific collection code
1890   KEY `timeidx` (`datetime`),
1891   KEY `branch_idx` (`branch`),
1892   KEY `type_idx` (`type`),
1893   KEY `itemnumber_idx` (`itemnumber`),
1894   KEY `itemtype_idx` (`itemtype`),
1895   KEY `borrowernumber_idx` (`borrowernumber`),
1896   KEY `ccode_idx` (`ccode`)
1897 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1898
1899 --
1900 -- Table structure for table pseudonymized_transactions
1901 --
1902
1903 DROP TABLE IF EXISTS pseudonymized_transactions;
1904 CREATE TABLE `pseudonymized_transactions` (
1905   `id` INT(11) NOT NULL AUTO_INCREMENT,
1906   `hashed_borrowernumber` VARCHAR(60) NOT NULL,
1907   `has_cardnumber` TINYINT(1) NOT NULL DEFAULT 0,
1908   `title` LONGTEXT,
1909   `city` LONGTEXT,
1910   `state` MEDIUMTEXT default NULL,
1911   `zipcode` varchar(25) default NULL,
1912   `country` MEDIUMTEXT,
1913   `branchcode` varchar(10) NOT NULL default '',
1914   `categorycode` varchar(10) NOT NULL default '',
1915   `dateenrolled` date default NULL,
1916   `sex` varchar(1) default NULL,
1917   `sort1` varchar(80) default NULL,
1918   `sort2` varchar(80) default NULL,
1919   `datetime` datetime default NULL,
1920   `transaction_branchcode` varchar(10) default NULL,
1921   `transaction_type` varchar(16) default NULL,
1922   `itemnumber` int(11) default NULL,
1923   `itemtype` varchar(10) default NULL,
1924   `holdingbranch` varchar(10) default null,
1925   `homebranch` varchar(10) default null,
1926   `location` varchar(80) default NULL,
1927   `itemcallnumber` varchar(255) default NULL,
1928   `ccode` varchar(80) default NULL,
1929   PRIMARY KEY (`id`),
1930   CONSTRAINT `pseudonymized_transactions_ibfk_1` FOREIGN KEY (`categorycode`) REFERENCES `categories` (`categorycode`),
1931   CONSTRAINT `pseudonymized_transactions_borrowers_ibfk_2` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`),
1932   CONSTRAINT `pseudonymized_transactions_borrowers_ibfk_3` FOREIGN KEY (`transaction_branchcode`) REFERENCES `branches` (`branchcode`)
1933 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1934
1935 --
1936 -- Table structure for table borrower_attributes
1937 --
1938
1939 DROP TABLE IF EXISTS pseudonymized_borrower_attributes;
1940 CREATE TABLE pseudonymized_borrower_attributes ( -- association table between pseudonymized_transactions and borrower_attributes
1941   `id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, -- Row id field
1942   `transaction_id` int(11) NOT NULL,
1943   `code` varchar(10) NOT NULL, -- foreign key from the borrower_attribute_types table, defines which custom field this value was entered for
1944   `attribute` varchar(255) default NULL, -- custom patron field value
1945   CONSTRAINT `pseudonymized_borrower_attributes_ibfk_1` FOREIGN KEY (`transaction_id`) REFERENCES `pseudonymized_transactions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
1946   CONSTRAINT `anonymized_borrower_attributes_ibfk_2` FOREIGN KEY (`code`) REFERENCES `borrower_attribute_types` (`code`) ON DELETE CASCADE ON UPDATE CASCADE
1947 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1948
1949 --
1950 -- Table structure for table subscription_frequencies
1951 --
1952
1953 DROP TABLE IF EXISTS subscription_frequencies;
1954 CREATE TABLE subscription_frequencies (
1955     id INTEGER NOT NULL AUTO_INCREMENT,
1956     description MEDIUMTEXT NOT NULL,
1957     displayorder INT DEFAULT NULL,
1958     unit ENUM('day','week','month','year') DEFAULT NULL,
1959     unitsperissue INTEGER NOT NULL DEFAULT '1',
1960     issuesperunit INTEGER NOT NULL DEFAULT '1',
1961     PRIMARY KEY (id)
1962 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1963
1964 --
1965 -- Table structure for table subscription_numberpatterns
1966 --
1967
1968 DROP TABLE IF EXISTS subscription_numberpatterns;
1969 CREATE TABLE subscription_numberpatterns (
1970     id INTEGER NOT NULL AUTO_INCREMENT,
1971     label VARCHAR(255) NOT NULL,
1972     displayorder INTEGER DEFAULT NULL,
1973     description MEDIUMTEXT NOT NULL,
1974     numberingmethod VARCHAR(255) NOT NULL,
1975     label1 VARCHAR(255) DEFAULT NULL,
1976     add1 INTEGER DEFAULT NULL,
1977     every1 INTEGER DEFAULT NULL,
1978     whenmorethan1 INTEGER DEFAULT NULL,
1979     setto1 INTEGER DEFAULT NULL,
1980     numbering1 VARCHAR(255) DEFAULT NULL,
1981     label2 VARCHAR(255) DEFAULT NULL,
1982     add2 INTEGER DEFAULT NULL,
1983     every2 INTEGER DEFAULT NULL,
1984     whenmorethan2 INTEGER DEFAULT NULL,
1985     setto2 INTEGER DEFAULT NULL,
1986     numbering2 VARCHAR(255) DEFAULT NULL,
1987     label3 VARCHAR(255) DEFAULT NULL,
1988     add3 INTEGER DEFAULT NULL,
1989     every3 INTEGER DEFAULT NULL,
1990     whenmorethan3 INTEGER DEFAULT NULL,
1991     setto3 INTEGER DEFAULT NULL,
1992     numbering3 VARCHAR(255) DEFAULT NULL,
1993     PRIMARY KEY (id)
1994 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
1995
1996 --
1997 -- Table structure for table `subscription`
1998 --
1999
2000 DROP TABLE IF EXISTS `subscription`;
2001 CREATE TABLE `subscription` ( -- information related to the subscription
2002   `biblionumber` int(11) NOT NULL, -- foreign key for biblio.biblionumber that this subscription is attached to
2003   `subscriptionid` int(11) NOT NULL auto_increment, -- unique key for this subscription
2004   `librarian` varchar(100) default '', -- the librarian's username from borrowers.userid
2005   `startdate` date default NULL, -- start date for this subscription
2006   `aqbooksellerid` int(11) default 0, -- foreign key for aqbooksellers.id to link to the vendor
2007   `cost` int(11) default 0,
2008   `aqbudgetid` int(11) default 0,
2009   `weeklength` int(11) default 0, -- subscription length in weeks (will not be filled in if monthlength or numberlength is set)
2010   `monthlength` int(11) default 0, -- subscription length in weeks (will not be filled in if weeklength or numberlength is set)
2011   `numberlength` int(11) default 0, -- subscription length in weeks (will not be filled in if monthlength or weeklength is set)
2012   `periodicity` integer default null, -- frequency type links to subscription_frequencies.id
2013   countissuesperunit INTEGER NOT NULL DEFAULT 1,
2014   `notes` LONGTEXT, -- notes
2015   `status` varchar(100) NOT NULL default '',  -- status of this subscription
2016   `lastvalue1` int(11) default NULL,
2017   `innerloop1` int(11) default 0,
2018   `lastvalue2` int(11) default NULL,
2019   `innerloop2` int(11) default 0,
2020   `lastvalue3` int(11) default NULL,
2021   `innerloop3` int(11) default 0,
2022   `firstacquidate` date default NULL, -- first issue received date
2023   `manualhistory` tinyint(1) NOT NULL default 0, -- yes or no to managing the history manually
2024   `irregularity` MEDIUMTEXT, -- any irregularities in the subscription
2025   skip_serialseq tinyint(1) NOT NULL DEFAULT 0,
2026   `letter` varchar(20) default NULL,
2027   `numberpattern` integer default null, -- the numbering pattern used links to subscription_numberpatterns.id
2028   locale VARCHAR(80) DEFAULT NULL, -- for foreign language subscriptions to display months, seasons, etc correctly
2029   `distributedto` MEDIUMTEXT,
2030   `internalnotes` LONGTEXT,
2031   `callnumber` MEDIUMTEXT, -- default call number
2032   `location` varchar(80) NULL default '', -- default shelving location (items.location)
2033   `branchcode` varchar(10) NOT NULL default '', -- default branches (items.homebranch)
2034   `lastbranch` varchar(10),
2035   `serialsadditems` tinyint(1) NOT NULL default '0', -- does receiving this serial create an item record
2036   `staffdisplaycount` VARCHAR(10) NULL, -- how many issues to show to the staff
2037   `opacdisplaycount` VARCHAR(10) NULL, -- how many issues to show to the public
2038   `graceperiod` int(11) NOT NULL default '0', -- grace period in days
2039   `enddate` date default NULL, -- subscription end date
2040   `closed` TINYINT(1) NOT NULL DEFAULT 0, -- yes / no if the subscription is closed
2041   `reneweddate` date default NULL, -- date of last renewal for the subscription
2042   `itemtype` VARCHAR( 10 ) NULL,
2043   `previousitemtype` VARCHAR( 10 ) NULL,
2044   `mana_id` int(11) NULL DEFAULT NULL,
2045   PRIMARY KEY  (`subscriptionid`),
2046   CONSTRAINT subscription_ibfk_1 FOREIGN KEY (periodicity) REFERENCES subscription_frequencies (id) ON DELETE SET NULL ON UPDATE CASCADE,
2047   CONSTRAINT subscription_ibfk_2 FOREIGN KEY (numberpattern) REFERENCES subscription_numberpatterns (id) ON DELETE SET NULL ON UPDATE CASCADE,
2048   CONSTRAINT subscription_ibfk_3 FOREIGN KEY (biblionumber) REFERENCES biblio (biblionumber) ON DELETE CASCADE ON UPDATE CASCADE
2049 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2050
2051 --
2052 -- Table structure for table `serial`
2053 --
2054
2055 DROP TABLE IF EXISTS `serial`;
2056 CREATE TABLE `serial` ( -- issues related to subscriptions
2057   `serialid` int(11) NOT NULL auto_increment, -- unique key for the issue
2058   `biblionumber` int(11) NOT NULL, -- foreign key for the biblio.biblionumber that this issue is attached to
2059   `subscriptionid` int(11) NOT NULL, -- foreign key to the subscription.subscriptionid that this issue is part of
2060   `serialseq` varchar(100) NOT NULL default '', -- issue information (volume, number, etc)
2061   `serialseq_x` varchar( 100 ) NULL DEFAULT NULL, -- first part of issue information
2062   `serialseq_y` varchar( 100 ) NULL DEFAULT NULL, -- second part of issue information
2063   `serialseq_z` varchar( 100 ) NULL DEFAULT NULL, -- third part of issue information
2064   `status` tinyint(4) NOT NULL default 0, -- status code for this issue (see manual for full descriptions)
2065   `planneddate` date default NULL, -- date expected
2066   `notes` MEDIUMTEXT, -- notes
2067   `publisheddate` date default NULL, -- date published
2068   publisheddatetext varchar(100) default NULL, -- date published (descriptive)
2069   `claimdate` date default NULL, -- date claimed
2070   claims_count int(11) default 0, -- number of claims made related to this issue
2071   `routingnotes` MEDIUMTEXT, -- notes from the routing list
2072   PRIMARY KEY (`serialid`),
2073   CONSTRAINT serial_ibfk_1 FOREIGN KEY (biblionumber) REFERENCES biblio (biblionumber) ON DELETE CASCADE ON UPDATE CASCADE,
2074   CONSTRAINT serial_ibfk_2 FOREIGN KEY (subscriptionid) REFERENCES subscription (subscriptionid) ON DELETE CASCADE ON UPDATE CASCADE
2075 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2076
2077 --
2078 -- Table structure for table `subscriptionhistory`
2079 --
2080
2081 DROP TABLE IF EXISTS `subscriptionhistory`;
2082 CREATE TABLE `subscriptionhistory` (
2083   `biblionumber` int(11) NOT NULL,
2084   `subscriptionid` int(11) NOT NULL,
2085   `histstartdate` date default NULL,
2086   `histenddate` date default NULL,
2087   `missinglist` LONGTEXT NOT NULL,
2088   `recievedlist` LONGTEXT NOT NULL,
2089   `opacnote` LONGTEXT NULL,
2090   `librariannote` LONGTEXT NULL,
2091   PRIMARY KEY  (`subscriptionid`),
2092   CONSTRAINT subscription_history_ibfk_1 FOREIGN KEY (biblionumber) REFERENCES biblio (biblionumber) ON DELETE CASCADE ON UPDATE CASCADE,
2093   CONSTRAINT subscription_history_ibfk_2 FOREIGN KEY (subscriptionid) REFERENCES subscription (subscriptionid) ON DELETE CASCADE ON UPDATE CASCADE
2094 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2095
2096 --
2097 -- Table structure for table `subscriptionroutinglist`
2098 --
2099
2100 DROP TABLE IF EXISTS `subscriptionroutinglist`;
2101 CREATE TABLE `subscriptionroutinglist` ( -- information related to the routing lists attached to subscriptions
2102   `routingid` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
2103   `borrowernumber` int(11) NOT NULL, -- foreign key from the borrowers table, defines with patron is on the routing list
2104   `ranking` int(11) default NULL, -- where the patron stands in line to receive the serial
2105   `subscriptionid` int(11) NOT NULL, -- foreign key from the subscription table, defines which subscription this routing list is for
2106   PRIMARY KEY  (`routingid`),
2107   UNIQUE (`subscriptionid`, `borrowernumber`),
2108   CONSTRAINT `subscriptionroutinglist_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`)
2109     ON DELETE CASCADE ON UPDATE CASCADE,
2110   CONSTRAINT `subscriptionroutinglist_ibfk_2` FOREIGN KEY (`subscriptionid`) REFERENCES `subscription` (`subscriptionid`)
2111     ON DELETE CASCADE ON UPDATE CASCADE
2112 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2113
2114 --
2115 -- Table structure for table `systempreferences`
2116 --
2117
2118 DROP TABLE IF EXISTS `systempreferences`;
2119 CREATE TABLE `systempreferences` ( -- global system preferences
2120   `variable` varchar(50) NOT NULL default '', -- system preference name
2121   `value` MEDIUMTEXT, -- system preference values
2122   `options` LONGTEXT, -- options for multiple choice system preferences
2123   `explanation` MEDIUMTEXT, -- descriptive text for the system preference
2124   `type` varchar(20) default NULL, -- type of question this preference asks (multiple choice, plain text, yes or no, etc)
2125   PRIMARY KEY  (`variable`)
2126 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2127
2128 --
2129 -- Table structure for table `tags`
2130 --
2131
2132 DROP TABLE IF EXISTS `tags`;
2133 CREATE TABLE `tags` (
2134   `entry` varchar(255) NOT NULL default '',
2135   `weight` bigint(20) NOT NULL default 0,
2136   PRIMARY KEY  (`entry` (191))
2137 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2138
2139 --
2140 -- Table structure for table `tags_all`
2141 --
2142
2143 DROP TABLE IF EXISTS `tags_all`;
2144 CREATE TABLE `tags_all` ( -- all of the tags
2145   `tag_id`         int(11) NOT NULL auto_increment, -- unique id and primary key
2146   `borrowernumber` int(11) DEFAULT NULL, -- the patron who added the tag (borrowers.borrowernumber)
2147   `biblionumber`   int(11) NOT NULL, -- the bib record this tag was left on (biblio.biblionumber)
2148   `term`      varchar(191) NOT NULL COLLATE utf8mb4_bin, -- the tag
2149   `language`       int(4) default NULL, -- the language the tag was left in
2150   `date_created` datetime  NOT NULL, -- the date the tag was added
2151   PRIMARY KEY  (`tag_id`),
2152   KEY `tags_borrowers_fk_1` (`borrowernumber`),
2153   KEY `tags_biblionumber_fk_1` (`biblionumber`),
2154   CONSTRAINT `tags_borrowers_fk_1` FOREIGN KEY (`borrowernumber`)
2155         REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE,
2156   CONSTRAINT `tags_biblionumber_fk_1` FOREIGN KEY (`biblionumber`)
2157         REFERENCES `biblio`     (`biblionumber`)  ON DELETE CASCADE ON UPDATE CASCADE
2158 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2159
2160 --
2161 -- Table structure for table `tags_approval`
2162 --
2163
2164 DROP TABLE IF EXISTS `tags_approval`;
2165 CREATE TABLE `tags_approval` ( -- approved tags
2166   `term`   varchar(191) NOT NULL COLLATE utf8mb4_bin, -- the tag
2167   `approved`     int(1) NOT NULL default '0', -- whether the tag is approved or not (1=yes, 0=pending, -1=rejected)
2168   `date_approved` datetime       default NULL, -- the date this tag was approved
2169   `approved_by` int(11)          default NULL, -- the librarian who approved the tag (borrowers.borrowernumber)
2170   `weight_total` int(9) NOT NULL default '1', -- the total number of times this tag was used
2171   PRIMARY KEY  (`term`),
2172   KEY `tags_approval_borrowers_fk_1` (`approved_by`),
2173   CONSTRAINT `tags_approval_borrowers_fk_1` FOREIGN KEY (`approved_by`)
2174         REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE
2175 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2176
2177 --
2178 -- Table structure for table `tags_index`
2179 --
2180
2181 DROP TABLE IF EXISTS `tags_index`;
2182 CREATE TABLE `tags_index` ( -- a weighted list of all tags and where they are used
2183   `term`    varchar(191) NOT NULL COLLATE utf8mb4_bin, -- the tag
2184   `biblionumber` int(11) NOT NULL, -- the bib record this tag was used on (biblio.biblionumber)
2185   `weight`        int(9) NOT NULL default '1', -- the number of times this term was used on this bib record
2186   PRIMARY KEY  (`term`,`biblionumber`),
2187   KEY `tags_index_biblionumber_fk_1` (`biblionumber`),
2188   CONSTRAINT `tags_index_term_fk_1` FOREIGN KEY (`term`)
2189         REFERENCES `tags_approval` (`term`)  ON DELETE CASCADE ON UPDATE CASCADE,
2190   CONSTRAINT `tags_index_biblionumber_fk_1` FOREIGN KEY (`biblionumber`)
2191         REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE
2192 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2193
2194 --
2195 -- Table structure for table `userflags`
2196 --
2197
2198 DROP TABLE IF EXISTS `userflags`;
2199 CREATE TABLE `userflags` (
2200   `bit` int(11) NOT NULL default 0,
2201   `flag` varchar(30) default NULL,
2202   `flagdesc` varchar(255) default NULL,
2203   `defaulton` int(11) default NULL,
2204   PRIMARY KEY  (`bit`)
2205 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2206
2207 --
2208 -- Table structure for table `virtualshelves`
2209 --
2210
2211 DROP TABLE IF EXISTS `virtualshelves`;
2212 CREATE TABLE `virtualshelves` ( -- information about lists (or virtual shelves)
2213   `shelfnumber` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
2214   `shelfname` varchar(255) default NULL, -- name of the list
2215   `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)
2216   `category` varchar(1) default NULL, -- type of list (private [1], public [2])
2217   `sortfield` varchar(16) default 'title', -- the field this list is sorted on
2218   `lastmodified` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time the list was last modified
2219   `created_on` datetime NOT NULL, -- creation time
2220   `allow_change_from_owner` tinyint(1) default 1, -- can owner change contents?
2221   `allow_change_from_others` tinyint(1) default 0, -- can others change contents?
2222   PRIMARY KEY  (`shelfnumber`),
2223   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
2224 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2225
2226 --
2227 -- Table structure for table `virtualshelfcontents`
2228 --
2229
2230 DROP TABLE IF EXISTS `virtualshelfcontents`;
2231 CREATE TABLE `virtualshelfcontents` ( -- information about the titles in a list (or virtual shelf)
2232   `shelfnumber` int(11) NOT NULL default 0, -- foreign key linking to the virtualshelves table, defines the list that this record has been added to
2233   `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
2234   `flags` int(11) default NULL,
2235   `dateadded` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, -- date and time this bib record was added to the list
2236   `borrowernumber` int, -- borrower number that created this list entry (only the first one is saved: no need for use in/as key)
2237   KEY `shelfnumber` (`shelfnumber`),
2238   KEY `biblionumber` (`biblionumber`),
2239   CONSTRAINT `virtualshelfcontents_ibfk_1` FOREIGN KEY (`shelfnumber`) REFERENCES `virtualshelves` (`shelfnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2240   CONSTRAINT `shelfcontents_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2241   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
2242 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2243
2244 --
2245 -- Table structure for table `virtualshelfshares`
2246 --
2247
2248 DROP TABLE IF EXISTS `virtualshelfshares`;
2249 CREATE TABLE `virtualshelfshares` ( -- shared private lists
2250   `id` int AUTO_INCREMENT PRIMARY KEY,  -- unique key
2251   `shelfnumber` int NOT NULL,  -- foreign key for virtualshelves
2252   `borrowernumber` int,  -- borrower that accepted access to this list
2253   `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
2254   `sharedate` datetime,  -- date of invitation or acceptance of invitation
2255   CONSTRAINT `virtualshelfshares_ibfk_1` FOREIGN KEY (`shelfnumber`) REFERENCES `virtualshelves` (`shelfnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2256   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
2257 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2258
2259 --
2260 -- Table structure for table `z3950servers`
2261 --
2262
2263 DROP TABLE IF EXISTS `z3950servers`;
2264 CREATE TABLE `z3950servers` ( -- connection information for the Z39.50 targets used in cataloging
2265   `id` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
2266   `host` varchar(255) default NULL, -- target's host name
2267   `port` int(11) default NULL, -- port number used to connect to target
2268   `db` varchar(255) default NULL, -- target's database name
2269   `userid` varchar(255) default NULL, -- username needed to log in to target
2270   `password` varchar(255) default NULL, -- password needed to log in to target
2271   `servername` LONGTEXT NOT NULL, -- name given to the target by the library
2272   `checked` smallint(6) default NULL, -- whether this target is checked by default  (1 for yes, 0 for no)
2273   `rank` int(11) default NULL, -- where this target appears in the list of targets
2274   `syntax` varchar(80) default NULL, -- marc format provided by this target
2275   `timeout` int(11) NOT NULL DEFAULT '0', -- number of seconds before Koha stops trying to access this server
2276   `servertype` enum('zed','sru') NOT NULL default 'zed', -- zed means z39.50 server
2277   `encoding` MEDIUMTEXT default NULL, -- characters encoding provided by this target
2278   `recordtype` enum('authority','biblio') NOT NULL default 'biblio', -- server contains bibliographic or authority records
2279   `sru_options` varchar(255) default NULL, -- options like sru=get, sru_version=1.1; will be passed to the server via ZOOM
2280   `sru_fields` LONGTEXT default NULL, -- contains the mapping between the Z3950 search fields and the specific SRU server indexes
2281   `add_xslt` LONGTEXT default NULL, -- zero or more paths to XSLT files to be processed on the search results
2282   `attributes` VARCHAR(255) default NULL, -- additional attributes passed to PQF queries
2283   PRIMARY KEY  (`id`)
2284 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2285
2286 --
2287 -- Table structure for table `zebraqueue`
2288 --
2289
2290 DROP TABLE IF EXISTS `zebraqueue`;
2291 CREATE TABLE `zebraqueue` (
2292   `id` int(11) NOT NULL auto_increment,
2293   `biblio_auth_number` bigint(20) unsigned NOT NULL default '0',
2294   `operation` char(20) NOT NULL default '',
2295   `server` char(20) NOT NULL default '',
2296   `done` int(11) NOT NULL default '0',
2297   `time` timestamp NOT NULL default CURRENT_TIMESTAMP,
2298   PRIMARY KEY  (`id`),
2299   KEY `zebraqueue_lookup` (`server`, `biblio_auth_number`, `operation`, `done`)
2300 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2301
2302 --
2303 -- Table structure for table `language_subtag_registry`
2304 -- http://www.w3.org/International/articles/language-tags/
2305 -- RFC4646
2306 --
2307
2308 DROP TABLE IF EXISTS language_subtag_registry;
2309 CREATE TABLE language_subtag_registry (
2310         subtag varchar(25),
2311         type varchar(25), -- language-script-region-variant-extension-privateuse
2312         description varchar(25), -- only one of the possible descriptions for ease of reference, see language_descriptions for the complete list
2313         added date,
2314         id int(11) NOT NULL auto_increment,
2315         PRIMARY KEY  (`id`),
2316         KEY `subtag` (`subtag`)
2317 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2318
2319 --
2320 -- Table structure for table `language_rfc4646_to_iso639`
2321 -- TODO: add suppress_scripts
2322 -- this maps three letter codes defined in iso639.2 back to their
2323 -- two letter equivilents in rfc4646 (LOC maintains iso639+)
2324 --
2325
2326 DROP TABLE IF EXISTS language_rfc4646_to_iso639;
2327 CREATE TABLE language_rfc4646_to_iso639 (
2328         rfc4646_subtag varchar(25),
2329         iso639_2_code varchar(25),
2330         id int(11) NOT NULL auto_increment,
2331         PRIMARY KEY  (`id`),
2332         KEY `rfc4646_subtag` (`rfc4646_subtag`)
2333 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2334
2335 --
2336 -- Table structure for table `language_descriptions`
2337 --
2338
2339 DROP TABLE IF EXISTS language_descriptions;
2340 CREATE TABLE language_descriptions (
2341         subtag varchar(25),
2342         type varchar(25),
2343         lang varchar(25),
2344         description varchar(255),
2345         id int(11) NOT NULL auto_increment,
2346         PRIMARY KEY  (`id`),
2347         KEY `lang` (`lang`),
2348         KEY `subtag_type_lang` (`subtag`, `type`, `lang`)
2349 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2350
2351 --
2352 -- Table structure for table `language_script_bidi`
2353 -- bi-directional support, keyed by script subcode
2354 --
2355
2356 DROP TABLE IF EXISTS language_script_bidi;
2357 CREATE TABLE language_script_bidi (
2358         rfc4646_subtag varchar(25), -- script subtag, Arab, Hebr, etc.
2359         bidi varchar(3), -- rtl ltr
2360         KEY `rfc4646_subtag` (`rfc4646_subtag`)
2361 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2362
2363 --
2364 -- Table structure for table `language_script_mapping`
2365 -- TODO: need to map language subtags to script subtags for detection
2366 -- of bidi when script is not specified (like ar, he)
2367 --
2368
2369 DROP TABLE IF EXISTS language_script_mapping;
2370 CREATE TABLE language_script_mapping (
2371         language_subtag varchar(25),
2372         script_subtag varchar(25),
2373         KEY `language_subtag` (`language_subtag`)
2374 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2375
2376 --
2377 -- Table structure for table `permissions`
2378 --
2379
2380 DROP TABLE IF EXISTS `permissions`;
2381 CREATE TABLE `permissions` (
2382   `module_bit` int(11) NOT NULL DEFAULT 0,
2383   `code` varchar(64) NOT NULL DEFAULT '',
2384   `description` varchar(255) DEFAULT NULL,
2385   PRIMARY KEY  (`module_bit`, `code`),
2386   CONSTRAINT `permissions_ibfk_1` FOREIGN KEY (`module_bit`) REFERENCES `userflags` (`bit`)
2387     ON DELETE CASCADE ON UPDATE CASCADE
2388 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2389
2390 --
2391 -- Table structure for table `serialitems`
2392 --
2393
2394 DROP TABLE IF EXISTS `serialitems`;
2395 CREATE TABLE `serialitems` (
2396         `itemnumber` int(11) NOT NULL,
2397         `serialid` int(11) NOT NULL,
2398     PRIMARY KEY (`itemnumber`),
2399         KEY `serialitems_sfk_1` (`serialid`),
2400         CONSTRAINT `serialitems_sfk_1` FOREIGN KEY (`serialid`) REFERENCES `serial` (`serialid`) ON DELETE CASCADE ON UPDATE CASCADE,
2401         CONSTRAINT `serialitems_sfk_2` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE
2402 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2403
2404 --
2405 -- Table structure for table `user_permissions`
2406 --
2407
2408 DROP TABLE IF EXISTS `user_permissions`;
2409 CREATE TABLE `user_permissions` (
2410   `borrowernumber` int(11) NOT NULL DEFAULT 0,
2411   `module_bit` int(11) NOT NULL DEFAULT 0,
2412   `code` varchar(64) DEFAULT NULL,
2413   CONSTRAINT `user_permissions_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`)
2414     ON DELETE CASCADE ON UPDATE CASCADE,
2415   CONSTRAINT `user_permissions_ibfk_2` FOREIGN KEY (`module_bit`, `code`) REFERENCES `permissions` (`module_bit`, `code`)
2416     ON DELETE CASCADE ON UPDATE CASCADE
2417 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2418
2419 --
2420 -- Table structure for table `tmp_holdsqueue`
2421 --
2422
2423 DROP TABLE IF EXISTS `tmp_holdsqueue`;
2424 CREATE TABLE `tmp_holdsqueue` (
2425   `biblionumber` int(11) default NULL,
2426   `itemnumber` int(11) default NULL,
2427   `barcode` varchar(20) default NULL,
2428   `surname` LONGTEXT NOT NULL,
2429   `firstname` MEDIUMTEXT,
2430   `phone` MEDIUMTEXT,
2431   `borrowernumber` int(11) NOT NULL,
2432   `cardnumber` varchar(32) default NULL,
2433   `reservedate` date default NULL,
2434   `title` LONGTEXT,
2435   `itemcallnumber` varchar(255) default NULL,
2436   `holdingbranch` varchar(10) default NULL,
2437   `pickbranch` varchar(10) default NULL,
2438   `notes` MEDIUMTEXT,
2439   `item_level_request` tinyint(4) NOT NULL default 0,
2440   CONSTRAINT `tmp_holdsqueue_ibfk_1` FOREIGN KEY (`itemnumber`)
2441     REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE
2442 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2443
2444 --
2445 -- Table structure for table `message_transport_types`
2446 --
2447
2448 DROP TABLE IF EXISTS `message_transport_types`;
2449 CREATE TABLE `message_transport_types` (
2450   `message_transport_type` varchar(20) NOT NULL,
2451   PRIMARY KEY  (`message_transport_type`)
2452 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2453
2454 --
2455 -- Table structure for table `message_queue`
2456 --
2457
2458 DROP TABLE IF EXISTS `message_queue`;
2459 CREATE TABLE `message_queue` (
2460   `message_id` int(11) NOT NULL auto_increment,
2461   `borrowernumber` int(11) default NULL,
2462   `subject` MEDIUMTEXT,
2463   `content` MEDIUMTEXT,
2464   `metadata` MEDIUMTEXT DEFAULT NULL,
2465   `letter_code` varchar(64) DEFAULT NULL,
2466   `message_transport_type` varchar(20) NOT NULL,
2467   `status` enum('sent','pending','failed','deleted') NOT NULL default 'pending',
2468   `time_queued` timestamp NULL,
2469   `updated_on` timestamp NOT NULL default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
2470   `to_address` LONGTEXT,
2471   `from_address` LONGTEXT,
2472   `reply_address` LONGTEXT,
2473   `content_type` MEDIUMTEXT,
2474   PRIMARY KEY `message_id` (`message_id`),
2475   KEY `borrowernumber` (`borrowernumber`),
2476   KEY `message_transport_type` (`message_transport_type`),
2477   CONSTRAINT `messageq_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2478   CONSTRAINT `messageq_ibfk_2` FOREIGN KEY (`message_transport_type`) REFERENCES `message_transport_types` (`message_transport_type`) ON DELETE RESTRICT ON UPDATE CASCADE
2479 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2480
2481 --
2482 -- Table structure for table `letter`
2483 --
2484
2485 DROP TABLE IF EXISTS `letter`;
2486 CREATE TABLE `letter` ( -- table for all notice templates in Koha
2487   `module` varchar(20) NOT NULL default '', -- Koha module that triggers this notice or slip
2488   `code` varchar(20) NOT NULL default '', -- unique identifier for this notice or slip
2489   `branchcode` varchar(10) NOT NULL default '', -- the branch this notice or slip is used at (branches.branchcode)
2490   `name` varchar(100) NOT NULL default '', -- plain text name for this notice or slip
2491   `is_html` tinyint(1) default 0, -- does this notice or slip use HTML (1 for yes, 0 for no)
2492   `title` varchar(200) NOT NULL default '', -- subject line of the notice
2493   `content` MEDIUMTEXT, -- body text for the notice or slip
2494   `message_transport_type` varchar(20) NOT NULL DEFAULT 'email', -- transport type for this notice
2495   `lang` varchar(25) NOT NULL DEFAULT 'default', -- lang of the notice
2496   PRIMARY KEY  (`module`,`code`, `branchcode`, `message_transport_type`, `lang`),
2497   CONSTRAINT `message_transport_type_fk` FOREIGN KEY (`message_transport_type`)
2498   REFERENCES `message_transport_types` (`message_transport_type`) ON DELETE CASCADE ON UPDATE CASCADE
2499 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2500
2501 --
2502 -- Table structure for table `overduerules_transport_types`
2503 --
2504
2505 DROP TABLE IF EXISTS `overduerules_transport_types`;
2506 CREATE TABLE overduerules_transport_types(
2507     `id` INT(11) NOT NULL AUTO_INCREMENT,
2508     `letternumber` INT(1) NOT NULL DEFAULT 1,
2509     `message_transport_type` VARCHAR(20) NOT NULL DEFAULT 'email',
2510     `overduerules_id` INT(11) NOT NULL,
2511     PRIMARY KEY (id),
2512     CONSTRAINT overduerules_fk FOREIGN KEY (overduerules_id) REFERENCES overduerules (overduerules_id) ON DELETE CASCADE ON UPDATE CASCADE,
2513     CONSTRAINT mtt_fk FOREIGN KEY (message_transport_type) REFERENCES message_transport_types (message_transport_type) ON DELETE CASCADE ON UPDATE CASCADE
2514 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2515
2516 --
2517 -- Table structure for table `message_attributes`
2518 --
2519
2520 DROP TABLE IF EXISTS `message_attributes`;
2521 CREATE TABLE `message_attributes` (
2522   `message_attribute_id` int(11) NOT NULL auto_increment,
2523   `message_name` varchar(40) NOT NULL default '',
2524   `takes_days` tinyint(1) NOT NULL default '0',
2525   PRIMARY KEY  (`message_attribute_id`),
2526   UNIQUE KEY `message_name` (`message_name`)
2527 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2528
2529 --
2530 -- Table structure for table `message_transports`
2531 --
2532
2533 DROP TABLE IF EXISTS `message_transports`;
2534 CREATE TABLE `message_transports` (
2535   `message_attribute_id` int(11) NOT NULL,
2536   `message_transport_type` varchar(20) NOT NULL,
2537   `is_digest` tinyint(1) NOT NULL default '0',
2538   `letter_module` varchar(20) NOT NULL default '',
2539   `letter_code` varchar(20) NOT NULL default '',
2540   `branchcode` varchar(10) NOT NULL default '',
2541   PRIMARY KEY  (`message_attribute_id`,`message_transport_type`,`is_digest`),
2542   KEY `message_transport_type` (`message_transport_type`),
2543   KEY `letter_module` (`letter_module`,`letter_code`),
2544   CONSTRAINT `message_transports_ibfk_1` FOREIGN KEY (`message_attribute_id`) REFERENCES `message_attributes` (`message_attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
2545   CONSTRAINT `message_transports_ibfk_2` FOREIGN KEY (`message_transport_type`) REFERENCES `message_transport_types` (`message_transport_type`) ON DELETE CASCADE ON UPDATE CASCADE
2546 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2547
2548 --
2549 -- Table structure for table `borrower_files`
2550 --
2551
2552 DROP TABLE IF EXISTS `borrower_files`;
2553 CREATE TABLE IF NOT EXISTS `borrower_files` ( -- files attached to the patron/borrower record
2554   `file_id` int(11) NOT NULL AUTO_INCREMENT, -- unique key
2555   `borrowernumber` int(11) NOT NULL, -- foreign key linking to the patron via the borrowernumber
2556   `file_name` varchar(255) NOT NULL, -- file name
2557   `file_type` varchar(255) NOT NULL, -- type of file
2558   `file_description` varchar(255) DEFAULT NULL, -- description given to the file
2559   `file_content` longblob NOT NULL, -- the file
2560   `date_uploaded` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, -- date and time the file was added
2561   PRIMARY KEY (`file_id`),
2562   KEY `borrowernumber` (`borrowernumber`),
2563   CONSTRAINT borrower_files_ibfk_1 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE
2564 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2565
2566 --
2567 -- Table structure for table `borrower_message_preferences`
2568 --
2569
2570 DROP TABLE IF EXISTS `borrower_message_preferences`;
2571 CREATE TABLE `borrower_message_preferences` (
2572   `borrower_message_preference_id` int(11) NOT NULL auto_increment,
2573   `borrowernumber` int(11) default NULL,
2574   `categorycode` varchar(10) default NULL,
2575   `message_attribute_id` int(11) default '0',
2576   `days_in_advance` int(11) default '0',
2577   `wants_digest` tinyint(1) NOT NULL default '0',
2578   PRIMARY KEY  (`borrower_message_preference_id`),
2579   KEY `borrowernumber` (`borrowernumber`),
2580   KEY `categorycode` (`categorycode`),
2581   KEY `message_attribute_id` (`message_attribute_id`),
2582   CONSTRAINT `borrower_message_preferences_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2583   CONSTRAINT `borrower_message_preferences_ibfk_2` FOREIGN KEY (`message_attribute_id`) REFERENCES `message_attributes` (`message_attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
2584   CONSTRAINT `borrower_message_preferences_ibfk_3` FOREIGN KEY (`categorycode`) REFERENCES `categories` (`categorycode`) ON DELETE CASCADE ON UPDATE CASCADE
2585 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2586
2587 --
2588 -- Table structure for table `borrower_message_transport_preferences`
2589 --
2590
2591 DROP TABLE IF EXISTS `borrower_message_transport_preferences`;
2592 CREATE TABLE `borrower_message_transport_preferences` (
2593   `borrower_message_preference_id` int(11) NOT NULL default '0',
2594   `message_transport_type` varchar(20) NOT NULL default '0',
2595   PRIMARY KEY  (`borrower_message_preference_id`,`message_transport_type`),
2596   KEY `message_transport_type` (`message_transport_type`),
2597   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,
2598   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
2599 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2600
2601 --
2602 -- Table structure for the table branch_transfer_limits
2603 --
2604
2605 DROP TABLE IF EXISTS `branch_transfer_limits`;
2606 CREATE TABLE branch_transfer_limits (
2607     limitId int(8) NOT NULL auto_increment,
2608     toBranch varchar(10) NOT NULL,
2609     fromBranch varchar(10) NOT NULL,
2610     itemtype varchar(10) NULL,
2611     ccode varchar(80) NULL,
2612     PRIMARY KEY  (limitId)
2613 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2614
2615 --
2616 -- Table structure for table `item_circulation_alert_preferences`
2617 --
2618
2619 DROP TABLE IF EXISTS `item_circulation_alert_preferences`;
2620 CREATE TABLE `item_circulation_alert_preferences` (
2621   `id` int(11) NOT NULL auto_increment,
2622   `branchcode` varchar(10) NOT NULL,
2623   `categorycode` varchar(10) NOT NULL,
2624   `item_type` varchar(10) NOT NULL,
2625   `notification` varchar(16) NOT NULL,
2626   PRIMARY KEY  (`id`),
2627   KEY `branchcode` (`branchcode`,`categorycode`,`item_type`, `notification`)
2628 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2629
2630 --
2631 -- Table structure for table `messages`
2632 --
2633 DROP TABLE IF EXISTS `messages`;
2634 CREATE TABLE `messages` ( -- circulation messages left via the patron's check out screen
2635   `message_id` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
2636   `borrowernumber` int(11) NOT NULL, -- foreign key linking this message to the borrowers table
2637   `branchcode` varchar(10) default NULL, -- foreign key linking the message to the branches table
2638   `message_type` varchar(1) NOT NULL, -- whether the message is for the librarians (L) or the patron (B)
2639   `message` MEDIUMTEXT NOT NULL, -- the text of the message
2640   `message_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, -- the date and time the message was written
2641   `manager_id` int(11) default NULL, -- creator of message
2642   PRIMARY KEY (`message_id`),
2643   CONSTRAINT `messages_ibfk_1` FOREIGN KEY (`manager_id`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL,
2644   CONSTRAINT `messages_borrowernumber` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE
2645 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2646
2647 --
2648 -- Table structure for table `cash_registers`
2649 --
2650
2651 DROP TABLE IF EXISTS `cash_registers`;
2652 CREATE TABLE `cash_registers` (
2653   `id` int(11) NOT NULL auto_increment, -- unique identifier for each account register
2654   `name` varchar(24) NOT NULL, -- the user friendly identifier for each account register
2655   `description` longtext NOT NULL, -- the user friendly description for each account register
2656   `branch` varchar(10) NOT NULL, -- the foreign key the library this account register belongs
2657   `branch_default` tinyint(1) NOT NULL DEFAULT 0, -- boolean flag to denote that this till is the branch default
2658   `starting_float` decimal(28, 6), -- the starting float this account register should be assigned
2659   `archived` tinyint(1) NOT NULL DEFAULT 0, -- boolean flag to denote if this till is archived or not
2660   PRIMARY KEY (`id`),
2661   UNIQUE KEY `name` (`name`,`branch`),
2662   CONSTRAINT cash_registers_branch FOREIGN KEY (branch) REFERENCES branches (branchcode) ON UPDATE CASCADE ON DELETE CASCADE
2663 ) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;
2664
2665 --
2666 -- Table structure for table `account_credit_types`
2667 --
2668
2669 DROP TABLE IF EXISTS `account_credit_types`;
2670 CREATE TABLE `account_credit_types` (
2671   `code` varchar(80) NOT NULL,
2672   `description` varchar(200) DEFAULT NULL,
2673   `can_be_added_manually` tinyint(4) NOT NULL DEFAULT 1,
2674   `credit_number_enabled` TINYINT(1) NOT NULL DEFAULT 0 COMMENT "Is autogeneration of credit number enabled for this credit type",
2675   `is_system` tinyint(1) NOT NULL DEFAULT 0,
2676   `archived` tinyint(1) NOT NULL DEFAULT 0, -- boolean flag to denote if this till is archived or not
2677   PRIMARY KEY (`code`)
2678 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2679
2680 --
2681 -- Table structure for table `account_credit_types_branches`
2682 --
2683
2684 DROP TABLE IF EXISTS `account_credit_types_branches`;
2685 CREATE TABLE `account_credit_types_branches` (
2686     `credit_type_code` VARCHAR(80),
2687     `branchcode` VARCHAR(10),
2688     FOREIGN KEY (`credit_type_code`) REFERENCES `account_credit_types` (`code`) ON DELETE CASCADE,
2689     FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE
2690 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2691
2692 --
2693 -- Table structure for table `account_debit_types`
2694 --
2695
2696 DROP TABLE IF EXISTS `account_debit_types`;
2697 CREATE TABLE `account_debit_types` (
2698   `code` varchar(80) NOT NULL,
2699   `description` varchar(200) DEFAULT NULL,
2700   `can_be_invoiced` tinyint(1) NOT NULL DEFAULT 1, -- boolean flag to denote if this debit type is available for manual invoicing
2701   `can_be_sold` tinyint(1) NOT NULL DEFAULT 0, -- boolean flag to denote if this debit type is available at point of sale
2702   `default_amount` decimal(28,6) DEFAULT NULL,
2703   `is_system` tinyint(1) NOT NULL DEFAULT 0,
2704   `archived` tinyint(1) NOT NULL DEFAULT 0, -- boolean flag to denote if this till is archived or not
2705   PRIMARY KEY (`code`)
2706 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2707
2708 --
2709 -- Table structure for table `account_debit_types_branches`
2710 --
2711
2712 DROP TABLE IF EXISTS `account_debit_types_branches`;
2713 CREATE TABLE `account_debit_types_branches` (
2714     `debit_type_code` VARCHAR(80),
2715     `branchcode` VARCHAR(10),
2716     FOREIGN KEY (`debit_type_code`) REFERENCES `account_debit_types` (`code`) ON DELETE CASCADE,
2717     FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE
2718 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2719
2720 --
2721 -- Table structure for table `accountlines`
2722 --
2723
2724 DROP TABLE IF EXISTS `accountlines`;
2725 CREATE TABLE `accountlines` (
2726   `accountlines_id` int(11) NOT NULL AUTO_INCREMENT,
2727   `issue_id` int(11) NULL DEFAULT NULL,
2728   `borrowernumber` int(11) DEFAULT NULL,
2729   `itemnumber` int(11) default NULL,
2730   `date` timestamp NULL,
2731   `amount` decimal(28,6) default NULL,
2732   `description` LONGTEXT,
2733   `credit_type_code` varchar(80) default NULL,
2734   `debit_type_code` varchar(80) default NULL,
2735   `credit_number` varchar(20) NULL DEFAULT NULL COMMENT 'autogenerated number for credits',
2736   `status` varchar(16) default NULL,
2737   `payment_type` varchar(80) default NULL, -- optional authorised value PAYMENT_TYPE
2738   `amountoutstanding` decimal(28,6) default NULL,
2739   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
2740   `note` MEDIUMTEXT NULL default NULL,
2741   `manager_id` int(11) NULL DEFAULT NULL,
2742   `register_id` int(11) NULL DEFAULT NULL,
2743   `interface` VARCHAR(16) NOT NULL,
2744   `branchcode` VARCHAR( 10 ) NULL DEFAULT NULL, -- the branchcode of the library where a payment was made, a manual invoice created, etc.
2745   PRIMARY KEY (`accountlines_id`),
2746   KEY `acctsborridx` (`borrowernumber`),
2747   KEY `timeidx` (`timestamp`),
2748   KEY `credit_type_code` (`credit_type_code`),
2749   KEY `debit_type_code` (`debit_type_code`),
2750   KEY `itemnumber` (`itemnumber`),
2751   KEY `branchcode` (`branchcode`),
2752   KEY `manager_id` (`manager_id`),
2753   CONSTRAINT `accountlines_ibfk_borrowers` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE,
2754   CONSTRAINT `accountlines_ibfk_items` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE SET NULL ON UPDATE CASCADE,
2755   CONSTRAINT `accountlines_ibfk_borrowers_2` FOREIGN KEY (`manager_id`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE,
2756   CONSTRAINT `accountlines_ibfk_branches` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE SET NULL ON UPDATE CASCADE,
2757   CONSTRAINT `accountlines_ibfk_registers` FOREIGN KEY (`register_id`) REFERENCES `cash_registers` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
2758   CONSTRAINT `accountlines_ibfk_credit_type` FOREIGN KEY (`credit_type_code`) REFERENCES `account_credit_types` (`code`) ON DELETE RESTRICT ON UPDATE CASCADE,
2759   CONSTRAINT `accountlines_ibfk_debit_type` FOREIGN KEY (`debit_type_code`) REFERENCES `account_debit_types` (`code`) ON DELETE RESTRICT ON UPDATE CASCADE
2760 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2761
2762 --
2763 -- Table structure for table `account_offset_types`
2764 --
2765
2766 DROP TABLE IF EXISTS `account_offset_types`;
2767 CREATE TABLE `account_offset_types` (
2768   `type` varchar(16) NOT NULL, -- The type of offset this is
2769   PRIMARY KEY (`type`)
2770 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2771
2772 --
2773 -- Table structure for table `account_offsets`
2774 --
2775
2776 DROP TABLE IF EXISTS `account_offsets`;
2777 CREATE TABLE `account_offsets` (
2778   `id` int(11) NOT NULL auto_increment, -- unique identifier for each offset
2779   `credit_id` int(11) NULL DEFAULT NULL, -- The id of the accountline the increased the patron's balance
2780   `debit_id` int(11) NULL DEFAULT NULL, -- The id of the accountline that decreased the patron's balance
2781   `type` varchar(16) NOT NULL, -- The type of offset this is
2782   `amount` decimal(26,6) NOT NULL, -- The amount of the change
2783   `created_on` timestamp NOT NULL default CURRENT_TIMESTAMP,
2784   PRIMARY KEY (`id`),
2785   CONSTRAINT `account_offsets_ibfk_p` FOREIGN KEY (`credit_id`) REFERENCES `accountlines` (`accountlines_id`) ON DELETE CASCADE ON UPDATE CASCADE,
2786   CONSTRAINT `account_offsets_ibfk_f` FOREIGN KEY (`debit_id`) REFERENCES `accountlines` (`accountlines_id`) ON DELETE CASCADE ON UPDATE CASCADE,
2787   CONSTRAINT `account_offsets_ibfk_t` FOREIGN KEY (`type`) REFERENCES `account_offset_types` (`type`) ON DELETE CASCADE ON UPDATE CASCADE
2788 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2789
2790 --
2791 -- Table structure for table `cash_register_actions`
2792 --
2793
2794 DROP TABLE IF EXISTS `cash_register_actions`;
2795 CREATE TABLE `cash_register_actions` (
2796   `id` int(11) NOT NULL auto_increment, -- unique identifier for each account register action
2797   `code` varchar(24) NOT NULL, -- action code denoting the type of action recorded (enum),
2798   `register_id` int(11) NOT NULL, -- id of cash_register this action belongs to,
2799   `manager_id` int(11) NOT NULL, -- staff member performing the action
2800   `amount` decimal(28,6) DEFAULT NULL, -- amount recorded in action (signed)
2801   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
2802   PRIMARY KEY (`id`),
2803   CONSTRAINT `cash_register_actions_manager` FOREIGN KEY (`manager_id`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2804   CONSTRAINT `cash_register_actions_register` FOREIGN KEY (`register_id`) REFERENCES `cash_registers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
2805 ) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;
2806
2807 --
2808 -- Table structure for table `action_logs`
2809 --
2810
2811 DROP TABLE IF EXISTS `action_logs`;
2812 CREATE TABLE `action_logs` ( -- logs of actions taken in Koha (requires that the logs be turned on)
2813   `action_id` int(11) NOT NULL auto_increment, -- unique identifier for each action
2814   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP, -- the date and time the action took place
2815   `user` int(11) NOT NULL default 0, -- the staff member who performed the action (borrowers.borrowernumber)
2816   `module` MEDIUMTEXT, -- the module this action was taken against
2817   `action` MEDIUMTEXT, -- the action (includes things like DELETED, ADDED, MODIFY, etc)
2818   `object` int(11) default NULL, -- the object that the action was taken against (could be a borrowernumber, itemnumber, etc)
2819   `info` MEDIUMTEXT, -- information about the action (usually includes SQL statement)
2820   `interface` VARCHAR(30) DEFAULT NULL, -- the context this action was taken in
2821   PRIMARY KEY (`action_id`),
2822   KEY `timestamp_idx` (`timestamp`),
2823   KEY `user_idx` (`user`),
2824   KEY `module_idx` (`module`(255)),
2825   KEY `action_idx` (`action`(255)),
2826   KEY `object_idx` (`object`),
2827   KEY `info_idx` (`info`(255)),
2828   KEY `interface` (`interface`)
2829 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2830
2831 --
2832 -- Table structure for table `alert`
2833 --
2834
2835 DROP TABLE IF EXISTS `alert`;
2836 CREATE TABLE `alert` (
2837   `alertid` int(11) NOT NULL auto_increment,
2838   `borrowernumber` int(11) NOT NULL default 0,
2839   `type` varchar(10) NOT NULL default '',
2840   `externalid` varchar(20) NOT NULL default '',
2841   PRIMARY KEY  (`alertid`),
2842   KEY `borrowernumber` (`borrowernumber`),
2843   KEY `type` (`type`,`externalid`)
2844 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2845
2846 --
2847 -- Table structure for table `aqbooksellers`
2848 --
2849
2850 DROP TABLE IF EXISTS `aqbooksellers`;
2851 CREATE TABLE `aqbooksellers` ( -- information about the vendors listed in acquisitions
2852   `id` int(11) NOT NULL auto_increment, -- primary key and unique identifier assigned by Koha
2853   `name` LONGTEXT NOT NULL, -- vendor name
2854   `address1` LONGTEXT, -- first line of vendor physical address
2855   `address2` LONGTEXT, -- second line of vendor physical address
2856   `address3` LONGTEXT, -- third line of vendor physical address
2857   `address4` LONGTEXT, -- fourth line of vendor physical address
2858   `phone` varchar(30) default NULL, -- vendor phone number
2859   `accountnumber` LONGTEXT, -- vendor account number
2860   `notes` LONGTEXT, -- order notes
2861   `postal` LONGTEXT, -- vendor postal address (all lines)
2862   `url` varchar(255) default NULL, -- vendor web address
2863   `active` tinyint(4) default NULL, -- is this vendor active (1 for yes, 0 for no)
2864   `listprice` varchar(10) default NULL, -- currency code for list prices
2865   `invoiceprice` varchar(10) default NULL, -- currency code for invoice prices
2866   `gstreg` tinyint(4) default NULL, -- is your library charged tax (1 for yes, 0 for no)
2867   `listincgst` tinyint(4) default NULL, -- is tax included in list prices (1 for yes, 0 for no)
2868   `invoiceincgst` tinyint(4) default NULL, -- is tax included in invoice prices (1 for yes, 0 for no)
2869   `tax_rate` decimal(6,4) default NULL, -- the tax rate the library is charged
2870   `discount` float(6,4) default NULL, -- discount offered on all items ordered from this vendor
2871   `fax` varchar(50) default NULL, -- vendor fax number
2872   deliverytime int(11) default NULL, -- vendor delivery time
2873   PRIMARY KEY  (`id`),
2874   KEY `listprice` (`listprice`),
2875   KEY `invoiceprice` (`invoiceprice`),
2876   KEY `name` (`name`(255)),
2877   CONSTRAINT `aqbooksellers_ibfk_1` FOREIGN KEY (`listprice`) REFERENCES `currency` (`currency`) ON DELETE CASCADE ON UPDATE CASCADE,
2878   CONSTRAINT `aqbooksellers_ibfk_2` FOREIGN KEY (`invoiceprice`) REFERENCES `currency` (`currency`) ON DELETE CASCADE ON UPDATE CASCADE
2879 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2880
2881 --
2882 -- Table structure for table `aqbasketgroups`
2883 --
2884
2885 DROP TABLE IF EXISTS `aqbasketgroups`;
2886 CREATE TABLE `aqbasketgroups` (
2887   `id` int(11) NOT NULL auto_increment,
2888   `name` varchar(50) default NULL,
2889   `closed` tinyint(1) default NULL,
2890   `booksellerid` int(11) NOT NULL,
2891   `deliveryplace` varchar(10) default NULL,
2892   `freedeliveryplace` MEDIUMTEXT default NULL,
2893   `deliverycomment` varchar(255) default NULL,
2894   `billingplace` varchar(10) default NULL,
2895   PRIMARY KEY  (`id`),
2896   KEY `booksellerid` (`booksellerid`),
2897   CONSTRAINT `aqbasketgroups_ibfk_1` FOREIGN KEY (`booksellerid`) REFERENCES `aqbooksellers` (`id`) ON UPDATE CASCADE ON DELETE CASCADE
2898 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2899
2900 --
2901 -- Table structure for table `aqbudgets`
2902 --
2903
2904 DROP TABLE IF EXISTS `aqbudgets`;
2905 CREATE TABLE `aqbudgets` ( -- information related to Funds
2906   `budget_id` int(11) NOT NULL auto_increment, -- primary key and unique number assigned to each fund by Koha
2907   `budget_parent_id` int(11) default NULL, -- if this fund is a child of another this will include the parent id (aqbudgets.budget_id)
2908   `budget_code` varchar(30) default NULL, -- code assigned to the fund by the user
2909   `budget_name` varchar(80) default NULL, -- name assigned to the fund by the user
2910   `budget_branchcode` varchar(10) default NULL, -- branch that this fund belongs to (branches.branchcode)
2911   `budget_amount` decimal(28,6) NULL default '0.00', -- total amount for this fund
2912   `budget_encumb` decimal(28,6) NULL default '0.00', -- budget warning at percentage
2913   `budget_expend` decimal(28,6) NULL default '0.00', -- budget warning at amount
2914   `budget_notes` LONGTEXT, -- notes related to this fund
2915   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this fund was last touched (created or modified)
2916   `budget_period_id` int(11) default NULL, -- id of the budget that this fund belongs to (aqbudgetperiods.budget_period_id)
2917   `sort1_authcat` varchar(80) default NULL, -- statistical category for this fund
2918   `sort2_authcat` varchar(80) default NULL, -- second statistical category for this fund
2919   `budget_owner_id` int(11) default NULL, -- borrowernumber of the person who owns this fund (borrowers.borrowernumber)
2920   `budget_permission` int(1) default '0', -- level of permission for this fund (used only by the owner, only by the library, or anyone)
2921   PRIMARY KEY  (`budget_id`),
2922   KEY `budget_parent_id` (`budget_parent_id`),
2923   KEY `budget_code` (`budget_code`),
2924   KEY `budget_branchcode` (`budget_branchcode`),
2925   KEY `budget_period_id` (`budget_period_id`),
2926   KEY `budget_owner_id` (`budget_owner_id`)
2927 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2928
2929 --
2930 -- Table structure for table aqbudgetborrowers
2931 --
2932
2933 DROP TABLE IF EXISTS aqbudgetborrowers;
2934 CREATE TABLE aqbudgetborrowers (
2935   budget_id int(11) NOT NULL,
2936   borrowernumber int(11) NOT NULL,
2937   PRIMARY KEY (budget_id, borrowernumber),
2938   CONSTRAINT aqbudgetborrowers_ibfk_1 FOREIGN KEY (budget_id)
2939     REFERENCES aqbudgets (budget_id)
2940     ON DELETE CASCADE ON UPDATE CASCADE,
2941   CONSTRAINT aqbudgetborrowers_ibfk_2 FOREIGN KEY (borrowernumber)
2942     REFERENCES borrowers (borrowernumber)
2943     ON DELETE CASCADE ON UPDATE CASCADE
2944 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2945
2946 --
2947 -- Table structure for table `aqbudgetperiods`
2948 --
2949
2950
2951 DROP TABLE IF EXISTS `aqbudgetperiods`;
2952 CREATE TABLE `aqbudgetperiods` ( -- information related to Budgets
2953   `budget_period_id` int(11) NOT NULL auto_increment, -- primary key and unique number assigned by Koha
2954   `budget_period_startdate` date NOT NULL, -- date when the budget starts
2955   `budget_period_enddate` date NOT NULL, -- date when the budget ends
2956   `budget_period_active` tinyint(1) default '0', -- whether this budget is active or not (1 for yes, 0 for no)
2957   `budget_period_description` LONGTEXT, -- description assigned to this budget
2958   `budget_period_total` decimal(28,6), -- total amount available in this budget
2959   `budget_period_locked` tinyint(1) default NULL, -- whether this budget is locked or not (1 for yes, 0 for no)
2960   `sort1_authcat` varchar(10) default NULL, -- statistical category for this budget
2961   `sort2_authcat` varchar(10) default NULL, -- second statistical category for this budget
2962   PRIMARY KEY  (`budget_period_id`)
2963 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2964
2965 --
2966 -- Table structure for table `aqbudgets_planning`
2967 --
2968
2969 DROP TABLE IF EXISTS `aqbudgets_planning`;
2970 CREATE TABLE `aqbudgets_planning` (
2971   `plan_id` int(11) NOT NULL auto_increment,
2972   `budget_id` int(11) NOT NULL,
2973   `budget_period_id` int(11) NOT NULL,
2974   `estimated_amount` decimal(28,6) default NULL,
2975   `authcat` varchar(30) NOT NULL,
2976   `authvalue` varchar(30) NOT NULL,
2977   `display` tinyint(1) DEFAULT 1,
2978   PRIMARY KEY  (`plan_id`),
2979   KEY `budget_period_id` (`budget_period_id`),
2980   CONSTRAINT `aqbudgets_planning_ifbk_1` FOREIGN KEY (`budget_id`) REFERENCES `aqbudgets` (`budget_id`) ON DELETE CASCADE ON UPDATE CASCADE
2981 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
2982
2983 --
2984 -- Table structure for table 'aqcontacts'
2985 --
2986
2987 DROP TABLE IF EXISTS aqcontacts;
2988 CREATE TABLE aqcontacts (
2989   id int(11) NOT NULL auto_increment, -- primary key and unique number assigned by Koha
2990   name varchar(100) default NULL, -- name of contact at vendor
2991   position varchar(100) default NULL, -- contact person's position
2992   phone varchar(100) default NULL, -- contact's phone number
2993   altphone varchar(100) default NULL, -- contact's alternate phone number
2994   fax varchar(100) default NULL,  -- contact's fax number
2995   email varchar(100) default NULL, -- contact's email address
2996   notes LONGTEXT, -- notes related to the contact
2997   orderacquisition tinyint(1) NOT NULL DEFAULT 0, -- should this contact receive acquisition orders
2998   claimacquisition tinyint(1) NOT NULL DEFAULT 0, -- should this contact receive acquisitions claims
2999   claimissues tinyint(1) NOT NULL DEFAULT 0, -- should this contact receive serial claims
3000   acqprimary tinyint(1) NOT NULL DEFAULT 0, -- is this the primary contact for acquisitions messages
3001   serialsprimary tinyint(1) NOT NULL DEFAULT 0, -- is this the primary contact for serials messages
3002   booksellerid int(11) not NULL,
3003   PRIMARY KEY  (id),
3004   CONSTRAINT booksellerid_aqcontacts_fk FOREIGN KEY (booksellerid)
3005        REFERENCES aqbooksellers (id) ON DELETE CASCADE ON UPDATE CASCADE
3006 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1;
3007
3008 --
3009 -- Table structure for table 'aqcontract'
3010 --
3011
3012 DROP TABLE IF EXISTS `aqcontract`;
3013 CREATE TABLE `aqcontract` (
3014   `contractnumber` int(11) NOT NULL auto_increment,
3015   `contractstartdate` date default NULL,
3016   `contractenddate` date default NULL,
3017   `contractname` varchar(50) default NULL,
3018   `contractdescription` LONGTEXT,
3019   `booksellerid` int(11) not NULL,
3020   PRIMARY KEY  (`contractnumber`),
3021   CONSTRAINT `booksellerid_fk1` FOREIGN KEY (`booksellerid`)
3022        REFERENCES `aqbooksellers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
3023 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;
3024
3025 --
3026 -- Table structure for table `aqbasket`
3027 --
3028
3029 DROP TABLE IF EXISTS `aqbasket`;
3030 CREATE TABLE `aqbasket` ( -- stores data about baskets in acquisitions
3031   `basketno` int(11) NOT NULL auto_increment, -- primary key, Koha defined number
3032   `basketname` varchar(50) default NULL, -- name given to the basket at creation
3033   `note` LONGTEXT, -- the internal note added at basket creation
3034   `booksellernote` LONGTEXT, -- the vendor note added at basket creation
3035   `contractnumber` int(11), -- links this basket to the aqcontract table (aqcontract.contractnumber)
3036   `creationdate` date default NULL, -- the date the basket was created
3037   `closedate` date default NULL, -- the date the basket was closed
3038   `booksellerid` int(11) NOT NULL default 1, -- the Koha assigned ID for the vendor (aqbooksellers.id)
3039   `authorisedby` varchar(10) default NULL, -- the borrowernumber of the person who created the basket
3040   `booksellerinvoicenumber` LONGTEXT, -- appears to always be NULL
3041   `basketgroupid` int(11), -- links this basket to its group (aqbasketgroups.id)
3042   `deliveryplace` varchar(10) default NULL, -- basket delivery place
3043   `billingplace` varchar(10) default NULL, -- basket billing place
3044   branch varchar(10) default NULL, -- basket branch
3045   is_standing TINYINT(1) NOT NULL DEFAULT 0, -- orders in this basket are standing
3046   create_items ENUM('ordering', 'receiving', 'cataloguing') default NULL, -- when items should be created for orders in this basket
3047   PRIMARY KEY  (`basketno`),
3048   KEY `booksellerid` (`booksellerid`),
3049   KEY `basketgroupid` (`basketgroupid`),
3050   KEY `contractnumber` (`contractnumber`),
3051   KEY `authorisedby` (`authorisedby`),
3052   CONSTRAINT `aqbasket_ibfk_1` FOREIGN KEY (`booksellerid`) REFERENCES `aqbooksellers` (`id`) ON UPDATE CASCADE,
3053   CONSTRAINT `aqbasket_ibfk_2` FOREIGN KEY (`contractnumber`) REFERENCES `aqcontract` (`contractnumber`),
3054   CONSTRAINT `aqbasket_ibfk_3` FOREIGN KEY (`basketgroupid`) REFERENCES `aqbasketgroups` (`id`) ON UPDATE CASCADE,
3055   CONSTRAINT aqbasket_ibfk_4 FOREIGN KEY (branch) REFERENCES branches (branchcode) ON UPDATE CASCADE ON DELETE SET NULL
3056 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3057
3058 --
3059 -- Table structure for table aqbasketusers
3060 --
3061
3062 DROP TABLE IF EXISTS aqbasketusers;
3063 CREATE TABLE aqbasketusers (
3064   basketno int(11) NOT NULL,
3065   borrowernumber int(11) NOT NULL,
3066   PRIMARY KEY (basketno,borrowernumber),
3067   CONSTRAINT aqbasketusers_ibfk_1 FOREIGN KEY (basketno) REFERENCES aqbasket (basketno) ON UPDATE CASCADE ON DELETE CASCADE,
3068   CONSTRAINT aqbasketusers_ibfk_2 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON UPDATE CASCADE ON DELETE CASCADE
3069 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3070
3071 --
3072 -- Table structure for table `suggestions`
3073 --
3074
3075 DROP TABLE IF EXISTS `suggestions`;
3076 CREATE TABLE `suggestions` ( -- purchase suggestions
3077   `suggestionid` int(8) NOT NULL auto_increment, -- unique identifier assigned automatically by Koha
3078   `suggestedby` int(11) DEFAULT NULL, -- borrowernumber for the person making the suggestion, foreign key linking to the borrowers table
3079   `suggesteddate` date NOT NULL, -- date the suggestion was submitted
3080   `managedby` int(11) default NULL, -- borrowernumber for the librarian managing the suggestion, foreign key linking to the borrowers table
3081   `manageddate` date default NULL, -- date the suggestion was updated
3082    acceptedby INT(11) default NULL, -- borrowernumber for the librarian who accepted the suggestion, foreign key linking to the borrowers table
3083    accepteddate date default NULL, -- date the suggestion was marked as accepted
3084    rejectedby INT(11) default NULL, -- borrowernumber for the librarian who rejected the suggestion, foreign key linking to the borrowers table
3085    rejecteddate date default NULL, -- date the suggestion was marked as rejected
3086    lastmodificationby INT(11) default NULL, -- borrowernumber for the librarian who edit the suggestion for the last time
3087    lastmodificationdate date default NULL, -- date of the last modification
3088   `STATUS` varchar(10) NOT NULL default '', -- suggestion status (ASKED, CHECKED, ACCEPTED, REJECTED, ORDERED, AVAILABLE or a value from the SUGGEST_STATUS authorised value category)
3089   `archived` TINYINT(1) NOT NULL DEFAULT 0, -- is the suggestion archived?
3090   `note` LONGTEXT, -- note entered on the suggestion
3091   `author` varchar(80) default NULL, -- author of the suggested item
3092   `title` varchar(255) default NULL, -- title of the suggested item
3093   `copyrightdate` smallint(6) default NULL, -- copyright date of the suggested item
3094   `publishercode` varchar(255) default NULL, -- publisher of the suggested item
3095   `date` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,  -- date and time the suggestion was updated
3096   `volumedesc` varchar(255) default NULL,
3097   `publicationyear` smallint(6) default 0,
3098   `place` varchar(255) default NULL, -- publication place of the suggested item
3099   `isbn` varchar(30) default NULL, -- isbn of the suggested item
3100   `biblionumber` int(11) default NULL, -- foreign key linking the suggestion to the biblio table after the suggestion has been ordered
3101   `reason` MEDIUMTEXT, -- reason for accepting or rejecting the suggestion
3102   `patronreason` MEDIUMTEXT, -- reason for making the suggestion
3103    budgetid INT(11), -- foreign key linking the suggested budget to the aqbudgets table
3104    branchcode VARCHAR(10) default NULL, -- foreign key linking the suggested branch to the branches table
3105    collectiontitle MEDIUMTEXT default NULL, -- collection name for the suggested item
3106    itemtype VARCHAR(30) default NULL, -- suggested item type
3107    quantity SMALLINT(6) default NULL, -- suggested quantity to be purchased
3108    currency VARCHAR(10) default NULL, -- suggested currency for the suggested price
3109    price DECIMAL(28,6) default NULL, -- suggested price
3110    total DECIMAL(28,6) default NULL, -- suggested total cost (price*quantity updated for currency)
3111   PRIMARY KEY  (`suggestionid`),
3112   KEY `suggestedby` (`suggestedby`),
3113   KEY `managedby` (`managedby`),
3114   KEY `acceptedby` (`acceptedby`),
3115   KEY `rejectedby` (`rejectedby`),
3116   KEY `biblionumber` (`biblionumber`),
3117   KEY `budgetid` (`budgetid`),
3118   KEY `branchcode` (`branchcode`),
3119   KEY `status` (`STATUS`),
3120   CONSTRAINT `suggestions_ibfk_suggestedby` FOREIGN KEY (`suggestedby`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE,
3121   CONSTRAINT `suggestions_ibfk_managedby` FOREIGN KEY (`managedby`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE,
3122   CONSTRAINT `suggestions_ibfk_acceptedby` FOREIGN KEY (`acceptedby`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE,
3123   CONSTRAINT `suggestions_ibfk_rejectedby` FOREIGN KEY (`rejectedby`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE,
3124   CONSTRAINT `suggestions_ibfk_lastmodificationby` FOREIGN KEY (`lastmodificationby`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE,
3125   CONSTRAINT `suggestions_ibfk_biblionumber` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE SET NULL ON UPDATE CASCADE,
3126   CONSTRAINT `suggestions_budget_id_fk` FOREIGN KEY (`budgetid`) REFERENCES `aqbudgets` (`budget_id`) ON DELETE SET NULL ON UPDATE CASCADE,
3127   CONSTRAINT `suggestions_ibfk_branchcode` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE SET NULL ON UPDATE CASCADE
3128 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3129
3130 --
3131 -- Table structure for table vendor_edi_accounts
3132 --
3133
3134 DROP TABLE IF EXISTS vendor_edi_accounts;
3135 CREATE TABLE IF NOT EXISTS vendor_edi_accounts (
3136   id INT(11) NOT NULL auto_increment,
3137   description MEDIUMTEXT NOT NULL,
3138   host VARCHAR(40),
3139   username VARCHAR(40),
3140   password VARCHAR(40),
3141   last_activity DATE,
3142   vendor_id INT(11) REFERENCES aqbooksellers( id ),
3143   download_directory MEDIUMTEXT,
3144   upload_directory MEDIUMTEXT,
3145   san VARCHAR(20),
3146   id_code_qualifier VARCHAR(3) default '14',
3147   transport VARCHAR(6) default 'FTP',
3148   quotes_enabled TINYINT(1) not null default 0,
3149   invoices_enabled TINYINT(1) not null default 0,
3150   orders_enabled TINYINT(1) not null default 0,
3151   responses_enabled TINYINT(1) not null default 0,
3152   auto_orders TINYINT(1) not null default 0,
3153   shipment_budget INTEGER(11) REFERENCES aqbudgets( budget_id ),
3154   plugin varchar(256) NOT NULL DEFAULT "",
3155   PRIMARY KEY  (id),
3156   KEY vendorid (vendor_id),
3157   KEY shipmentbudget (shipment_budget),
3158   CONSTRAINT vfk_vendor_id FOREIGN KEY ( vendor_id ) REFERENCES aqbooksellers ( id ),
3159   CONSTRAINT vfk_shipment_budget FOREIGN KEY ( shipment_budget ) REFERENCES aqbudgets ( budget_id )
3160 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3161
3162 --
3163 -- Table structure for table edifact_messages
3164 --
3165
3166 DROP TABLE IF EXISTS edifact_messages;
3167 CREATE TABLE IF NOT EXISTS edifact_messages (
3168   id INT(11) NOT NULL auto_increment,
3169   message_type VARCHAR(10) NOT NULL,
3170   transfer_date DATE,
3171   vendor_id INT(11) REFERENCES aqbooksellers( id ),
3172   edi_acct  INTEGER REFERENCES vendor_edi_accounts( id ),
3173   status MEDIUMTEXT,
3174   basketno INT(11) REFERENCES aqbasket( basketno),
3175   raw_msg LONGTEXT,
3176   filename MEDIUMTEXT,
3177   deleted tinyint(1) NOT NULL DEFAULT 0,
3178   PRIMARY KEY  (id),
3179   KEY vendorid ( vendor_id),
3180   KEY ediacct (edi_acct),
3181   KEY basketno ( basketno),
3182   CONSTRAINT emfk_vendor FOREIGN KEY ( vendor_id ) REFERENCES aqbooksellers ( id ) ON DELETE CASCADE ON UPDATE CASCADE,
3183   CONSTRAINT emfk_edi_acct FOREIGN KEY ( edi_acct ) REFERENCES vendor_edi_accounts ( id ) ON DELETE CASCADE ON UPDATE CASCADE,
3184   CONSTRAINT emfk_basketno FOREIGN KEY ( basketno ) REFERENCES aqbasket ( basketno ) ON DELETE CASCADE ON UPDATE CASCADE
3185 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3186
3187 --
3188 -- Table structure for table aqinvoices
3189 --
3190
3191 DROP TABLE IF EXISTS aqinvoices;
3192 CREATE TABLE aqinvoices (
3193   invoiceid int(11) NOT NULL AUTO_INCREMENT,    -- ID of the invoice, primary key
3194   invoicenumber LONGTEXT NOT NULL,    -- Name of invoice
3195   booksellerid int(11) NOT NULL,    -- foreign key to aqbooksellers
3196   shipmentdate date default NULL,   -- date of shipment
3197   billingdate date default NULL,    -- date of billing
3198   closedate date default NULL,  -- invoice close date, NULL means the invoice is open
3199   shipmentcost decimal(28,6) default NULL,  -- shipment cost
3200   shipmentcost_budgetid int(11) default NULL,   -- foreign key to aqbudgets, link the shipment cost to a budget
3201   message_id int(11) default NULL, -- foreign key to edifact invoice message
3202   PRIMARY KEY (invoiceid),
3203   CONSTRAINT aqinvoices_fk_aqbooksellerid FOREIGN KEY (booksellerid) REFERENCES aqbooksellers (id) ON DELETE CASCADE ON UPDATE CASCADE,
3204   CONSTRAINT edifact_msg_fk FOREIGN KEY ( message_id ) REFERENCES edifact_messages ( id ) ON DELETE SET NULL,
3205   CONSTRAINT aqinvoices_fk_shipmentcost_budgetid FOREIGN KEY (shipmentcost_budgetid) REFERENCES aqbudgets (budget_id) ON DELETE SET NULL ON UPDATE CASCADE
3206 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3207
3208 --
3209 -- Table structure for table 'aqinvoice_adjustments'
3210 --
3211
3212 DROP TABLE IF EXISTS aqinvoice_adjustments;
3213 CREATE TABLE aqinvoice_adjustments (
3214     adjustment_id int(11) NOT NULL AUTO_INCREMENT, -- primary key for adjustments
3215     invoiceid int(11) NOT NULL, -- foreign key to link an adjustment to an invoice
3216     adjustment decimal(28,6), -- amount of adjustment
3217     reason varchar(80) default NULL, -- reason for adjustment defined by authorised values in ADJ_REASON category
3218     note mediumtext default NULL, -- text to explain adjustment
3219     budget_id int(11) default NULL, -- optional link to budget to apply adjustment to
3220     encumber_open smallint(1) NOT NULL default 1, -- whether or not to encumber the funds when invoice is still open, 1 = yes, 0 = no
3221     timestamp timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- timestamp  of last adjustment to adjustment
3222     PRIMARY KEY (adjustment_id),
3223     CONSTRAINT aqinvoice_adjustments_fk_invoiceid FOREIGN KEY (invoiceid) REFERENCES aqinvoices (invoiceid) ON DELETE CASCADE ON UPDATE CASCADE,
3224     CONSTRAINT aqinvoice_adjustments_fk_budget_id FOREIGN KEY (budget_id) REFERENCES aqbudgets (budget_id) ON DELETE SET NULL ON UPDATE CASCADE
3225 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3226
3227 --
3228 -- Table structure for table `aqorders`
3229 --
3230
3231 DROP TABLE IF EXISTS `aqorders`;
3232 CREATE TABLE `aqorders` ( -- information related to the basket line items
3233   `ordernumber` int(11) NOT NULL auto_increment, -- primary key and unique identifier assigned by Koha to each line
3234   `biblionumber` int(11) default NULL, -- links the order to the biblio being ordered (biblio.biblionumber)
3235   `entrydate` date default NULL, -- the date the bib was added to the basket
3236   `quantity` smallint(6) default NULL, -- the quantity ordered
3237   `currency` varchar(10) default NULL, -- the currency used for the purchase
3238   `listprice` decimal(28,6) default NULL, -- the vendor price for this line item
3239   `datereceived` date default NULL, -- the date this order was received
3240   invoiceid int(11) default NULL, -- id of invoice
3241   `freight` decimal(28,6) DEFAULT NULL, -- shipping costs (not used)
3242   `unitprice` decimal(28,6) DEFAULT NULL, -- the actual cost entered when receiving this line item
3243   `unitprice_tax_excluded` decimal(28,6) default NULL, -- the unit price excluding tax (on receiving)
3244   `unitprice_tax_included` decimal(28,6) default NULL, -- the unit price including tax (on receiving)
3245   `quantityreceived` smallint(6) NOT NULL default 0, -- the quantity that have been received so far
3246   `created_by` int(11) NULL DEFAULT NULL, -- the borrowernumber of order line's creator
3247   `datecancellationprinted` date default NULL, -- the date the line item was deleted
3248   `cancellationreason` MEDIUMTEXT default NULL, -- reason of cancellation
3249   `order_internalnote` LONGTEXT, -- notes related to this order line, made for staff
3250   `order_vendornote` LONGTEXT, -- notes related to this order line, made for vendor
3251   `purchaseordernumber` LONGTEXT, -- not used? always NULL
3252   `basketno` int(11) default NULL, -- links this order line to a specific basket (aqbasket.basketno)
3253   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this order line was last modified
3254   `rrp` decimal(13,2) DEFAULT NULL, -- the retail cost for this line item
3255   `replacementprice` decimal(28,6) DEFAULT NULL, -- the replacement cost for this line item
3256   `rrp_tax_excluded` decimal(28,6) default NULL, -- the replacement cost excluding tax
3257   `rrp_tax_included` decimal(28,6) default NULL, -- the replacement cost including tax
3258   `ecost` decimal(13,2) DEFAULT NULL, -- the replacement cost for this line item
3259   `ecost_tax_excluded` decimal(28,6) default NULL, -- the estimated cost excluding tax
3260   `ecost_tax_included` decimal(28,6) default NULL, -- the estimated cost including tax
3261   `tax_rate_bak` decimal(6,4) DEFAULT NULL, -- the tax rate for this line item (%)
3262   `tax_rate_on_ordering` decimal(6,4) DEFAULT NULL, -- the tax rate on ordering for this line item (%)
3263   `tax_rate_on_receiving` decimal(6,4) DEFAULT NULL, -- the tax rate on receiving for this line item (%)
3264   `tax_value_bak` decimal(28,6) default NULL, -- the tax value for this line item
3265   `tax_value_on_ordering` decimal(28,6) DEFAULT NULL, -- the tax value on ordering for this line item
3266   `tax_value_on_receiving` decimal(28,6) DEFAULT NULL, -- the tax value on receiving for this line item
3267   `discount` float(6,4) default NULL, -- the discount for this line item (%)
3268   `budget_id` int(11) NOT NULL, -- the fund this order goes against (aqbudgets.budget_id)
3269   `budgetdate` date default NULL, -- not used? always NULL
3270   `sort1` varchar(80) default NULL, -- statistical field
3271   `sort2` varchar(80) default NULL, -- second statistical field
3272   `sort1_authcat` varchar(10) default NULL,
3273   `sort2_authcat` varchar(10) default NULL,
3274   `uncertainprice` tinyint(1), -- was this price uncertain (1 for yes, 0 for no)
3275   `subscriptionid` int(11) default NULL, -- links this order line to a subscription (subscription.subscriptionid)
3276   parent_ordernumber int(11) default NULL, -- ordernumber of parent order line, or same as ordernumber if no parent
3277   `orderstatus` varchar(16) default 'new', -- the current status for this line item. Can be 'new', 'ordered', 'partial', 'complete' or 'cancelled'
3278   line_item_id varchar(35) default NULL, -- Supplier's article id for Edifact orderline
3279   suppliers_reference_number varchar(35) default NULL, -- Suppliers unique edifact quote ref
3280   suppliers_reference_qualifier varchar(3) default NULL, -- Type of number above usually 'QLI'
3281   `suppliers_report` MEDIUMTEXT COLLATE utf8mb4_unicode_ci, -- reports received from suppliers
3282   PRIMARY KEY  (`ordernumber`),
3283   KEY `basketno` (`basketno`),
3284   KEY `biblionumber` (`biblionumber`),
3285   KEY `budget_id` (`budget_id`),
3286   KEY `parent_ordernumber` (`parent_ordernumber`),
3287   KEY `orderstatus` (`orderstatus`),
3288   CONSTRAINT aqorders_created_by FOREIGN KEY (created_by) REFERENCES borrowers (borrowernumber) ON DELETE SET NULL ON UPDATE CASCADE,
3289   CONSTRAINT `aqorders_budget_id_fk` FOREIGN KEY (`budget_id`) REFERENCES `aqbudgets` (`budget_id`) ON DELETE CASCADE ON UPDATE CASCADE,
3290   CONSTRAINT `aqorders_ibfk_1` FOREIGN KEY (`basketno`) REFERENCES `aqbasket` (`basketno`) ON DELETE CASCADE ON UPDATE CASCADE,
3291   CONSTRAINT `aqorders_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE SET NULL ON UPDATE CASCADE,
3292   CONSTRAINT aqorders_ibfk_3 FOREIGN KEY (invoiceid) REFERENCES aqinvoices (invoiceid) ON DELETE SET NULL ON UPDATE CASCADE,
3293   CONSTRAINT `aqorders_subscriptionid` FOREIGN KEY (`subscriptionid`) REFERENCES `subscription` (`subscriptionid`) ON DELETE CASCADE ON UPDATE CASCADE,
3294   CONSTRAINT `aqorders_currency` FOREIGN KEY (`currency`) REFERENCES `currency` (`currency`) ON DELETE SET NULL ON UPDATE SET NULL
3295 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3296
3297 --
3298 -- Table structure for table `aqorder_users`
3299 --
3300
3301 DROP TABLE IF EXISTS `aqorder_users`;
3302 CREATE TABLE aqorder_users ( -- Mapping orders to patrons for notification sending
3303     ordernumber int(11) NOT NULL, -- the order this patrons receive notifications from (aqorders.ordernumber)
3304     borrowernumber int(11) NOT NULL, -- the borrowernumber for the patron receiving notifications for this order (borrowers.borrowernumber)
3305     PRIMARY KEY (ordernumber, borrowernumber),
3306     CONSTRAINT aqorder_users_ibfk_1 FOREIGN KEY (ordernumber) REFERENCES aqorders (ordernumber) ON DELETE CASCADE ON UPDATE CASCADE,
3307     CONSTRAINT aqorder_users_ibfk_2 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE
3308 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3309
3310 --
3311 -- Table structure for table `aqorders_items`
3312 --
3313
3314 DROP TABLE IF EXISTS `aqorders_items`;
3315 CREATE TABLE `aqorders_items` ( -- information on items entered in the acquisitions process
3316   `ordernumber` int(11) NOT NULL, -- the order this item is attached to (aqorders.ordernumber)
3317   `itemnumber` int(11) NOT NULL, -- the item number for this item (items.itemnumber)
3318   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this order item was last touched
3319   PRIMARY KEY  (`itemnumber`),
3320   KEY `ordernumber` (`ordernumber`),
3321   CONSTRAINT aqorders_items_ibfk_1 FOREIGN KEY (ordernumber) REFERENCES aqorders (ordernumber) ON DELETE CASCADE ON UPDATE CASCADE
3322 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3323
3324 --
3325 -- Table structure for table aqorders_transfers
3326 --
3327
3328 DROP TABLE IF EXISTS aqorders_transfers;
3329 CREATE TABLE aqorders_transfers (
3330   ordernumber_from int(11) NULL,
3331   ordernumber_to int(11) NULL,
3332   timestamp timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
3333   UNIQUE KEY ordernumber_from (ordernumber_from),
3334   UNIQUE KEY ordernumber_to (ordernumber_to),
3335   CONSTRAINT aqorders_transfers_ordernumber_from FOREIGN KEY (ordernumber_from) REFERENCES aqorders (ordernumber) ON DELETE SET NULL ON UPDATE CASCADE,
3336   CONSTRAINT aqorders_transfers_ordernumber_to FOREIGN KEY (ordernumber_to) REFERENCES aqorders (ordernumber) ON DELETE SET NULL ON UPDATE CASCADE
3337 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3338
3339 --
3340 -- Table structure for table aqorders_claims
3341 --
3342
3343 DROP TABLE IF EXISTS aqorders_claims;
3344 CREATE TABLE aqorders_claims (
3345     id int(11) AUTO_INCREMENT, -- ID of the claims
3346     ordernumber INT(11) NOT NULL, -- order linked to this claim
3347     claimed_on TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, -- Date of the claims
3348     PRIMARY KEY (id),
3349     CONSTRAINT aqorders_claims_ibfk_1 FOREIGN KEY (ordernumber) REFERENCES aqorders (ordernumber) ON DELETE CASCADE ON UPDATE CASCADE
3350 ) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;
3351
3352 --
3353 -- Table structure for table `transport_cost`
3354 --
3355
3356 DROP TABLE IF EXISTS transport_cost;
3357 CREATE TABLE transport_cost (
3358       frombranch varchar(10) NOT NULL,
3359       tobranch varchar(10) NOT NULL,
3360       cost decimal(6,2) NOT NULL,
3361       disable_transfer tinyint(1) NOT NULL DEFAULT 0,
3362       PRIMARY KEY (frombranch, tobranch),
3363       CONSTRAINT transport_cost_ibfk_1 FOREIGN KEY (frombranch) REFERENCES branches (branchcode) ON DELETE CASCADE ON UPDATE CASCADE,
3364       CONSTRAINT transport_cost_ibfk_2 FOREIGN KEY (tobranch) REFERENCES branches (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE
3365 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3366
3367 --
3368 -- Table structure for table `biblioimages`
3369 --
3370
3371 DROP TABLE IF EXISTS `biblioimages`;
3372
3373 CREATE TABLE `biblioimages` ( -- local cover images
3374  `imagenumber` int(11) NOT NULL AUTO_INCREMENT, -- unique identifier for the image
3375  `biblionumber` int(11) NOT NULL, -- foreign key from biblio table to link to biblionumber
3376  `mimetype` varchar(15) NOT NULL, -- image type
3377  `imagefile` mediumblob NOT NULL, -- image file contents
3378  `thumbnail` mediumblob NOT NULL, -- thumbnail file contents
3379  `timestamp` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, -- image creation/update time
3380  PRIMARY KEY (`imagenumber`),
3381  CONSTRAINT `bibliocoverimage_fk1` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE
3382 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3383
3384 --
3385 -- Table structure for table `social_data`
3386 --
3387
3388 DROP TABLE IF EXISTS `social_data`;
3389 CREATE TABLE IF NOT EXISTS `social_data` (
3390   `isbn` VARCHAR(30) NOT NULL DEFAULT '',
3391   `num_critics` INT,
3392   `num_critics_pro` INT,
3393   `num_quotations` INT,
3394   `num_videos` INT,
3395   `score_avg` DECIMAL(5,2),
3396   `num_scores` INT,
3397   PRIMARY KEY  (`isbn`)
3398 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3399
3400 --
3401 -- 'Ratings' table. This tracks the star ratings set by borrowers.
3402 --
3403
3404 DROP TABLE IF EXISTS ratings;
3405 CREATE TABLE ratings ( -- information related to the star ratings in the OPAC
3406     borrowernumber int(11) NOT NULL, -- the borrowernumber of the patron who left this rating (borrowers.borrowernumber)
3407     biblionumber int(11) NOT NULL, -- the biblio this rating is for (biblio.biblionumber)
3408     rating_value tinyint(1) NOT NULL, -- the rating, from 1 to 5
3409     timestamp timestamp NOT NULL default CURRENT_TIMESTAMP,
3410     PRIMARY KEY  (borrowernumber,biblionumber),
3411     CONSTRAINT ratings_ibfk_1 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE,
3412     CONSTRAINT ratings_ibfk_2 FOREIGN KEY (biblionumber) REFERENCES biblio (biblionumber) ON DELETE CASCADE ON UPDATE CASCADE
3413 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3414
3415 --
3416 -- Table structure for table `quotes`
3417 --
3418
3419 DROP TABLE IF EXISTS quotes;
3420 CREATE TABLE `quotes` ( -- data for the quote of the day feature
3421   `id` int(11) NOT NULL AUTO_INCREMENT, -- unique id for the quote
3422   `source` MEDIUMTEXT DEFAULT NULL, -- source/credit for the quote
3423   `text` LONGTEXT NOT NULL, -- text of the quote
3424   `timestamp` datetime NULL, -- date and time that the quote last appeared in the opac
3425   PRIMARY KEY (`id`)
3426 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3427
3428 --
3429 -- Table structure for table categories_branches
3430 --
3431
3432 DROP TABLE IF EXISTS categories_branches;
3433 CREATE TABLE categories_branches( -- association table between categories and branches
3434     categorycode VARCHAR(10),
3435     branchcode VARCHAR(10),
3436     FOREIGN KEY (categorycode) REFERENCES categories(categorycode) ON DELETE CASCADE,
3437     FOREIGN KEY (branchcode) REFERENCES branches(branchcode) ON DELETE CASCADE
3438 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3439
3440 --
3441 -- Table structure for table authorised_values_branches
3442 --
3443
3444 DROP TABLE IF EXISTS authorised_values_branches;
3445 CREATE TABLE authorised_values_branches( -- association table between authorised_values and branches
3446     av_id INT(11) NOT NULL,
3447     branchcode VARCHAR(10) NOT NULL,
3448     FOREIGN KEY (av_id) REFERENCES authorised_values(id) ON DELETE CASCADE,
3449     FOREIGN KEY (branchcode) REFERENCES branches(branchcode) ON DELETE CASCADE
3450 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3451
3452
3453 --
3454 -- Table structure for table borrower_attribute_types_branches
3455 --
3456
3457 DROP TABLE IF EXISTS borrower_attribute_types_branches;
3458 CREATE TABLE borrower_attribute_types_branches( -- association table between borrower_attribute_types and branches
3459     bat_code VARCHAR(10),
3460     b_branchcode VARCHAR(10),
3461     FOREIGN KEY (bat_code) REFERENCES borrower_attribute_types(code) ON DELETE CASCADE,
3462     FOREIGN KEY (b_branchcode) REFERENCES branches(branchcode) ON DELETE CASCADE
3463 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3464
3465 --
3466 -- Table structure for table `borrower_modifications`
3467 --
3468
3469 CREATE TABLE IF NOT EXISTS `borrower_modifications` (
3470   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
3471   `verification_token` varchar(255) NOT NULL DEFAULT '',
3472   `changed_fields` MEDIUMTEXT DEFAULT NULL,
3473   `borrowernumber` int(11) NOT NULL DEFAULT '0',
3474   `cardnumber` varchar(32) DEFAULT NULL,
3475   `surname` LONGTEXT,
3476   `firstname` MEDIUMTEXT,
3477   `title` LONGTEXT,
3478   `othernames` LONGTEXT,
3479   `initials` MEDIUMTEXT,
3480   `streetnumber` varchar(10) DEFAULT NULL,
3481   `streettype` varchar(50) DEFAULT NULL,
3482   `address` LONGTEXT,
3483   `address2` MEDIUMTEXT,
3484   `city` LONGTEXT,
3485   `state` MEDIUMTEXT,
3486   `zipcode` varchar(25) DEFAULT NULL,
3487   `country` MEDIUMTEXT,
3488   `email` LONGTEXT,
3489   `phone` MEDIUMTEXT,
3490   `mobile` varchar(50) DEFAULT NULL,
3491   `fax` LONGTEXT,
3492   `emailpro` MEDIUMTEXT,
3493   `phonepro` MEDIUMTEXT,
3494   `B_streetnumber` varchar(10) DEFAULT NULL,
3495   `B_streettype` varchar(50) DEFAULT NULL,
3496   `B_address` varchar(100) DEFAULT NULL,
3497   `B_address2` MEDIUMTEXT,
3498   `B_city` LONGTEXT,
3499   `B_state` MEDIUMTEXT,
3500   `B_zipcode` varchar(25) DEFAULT NULL,
3501   `B_country` MEDIUMTEXT,
3502   `B_email` MEDIUMTEXT,
3503   `B_phone` LONGTEXT,
3504   `dateofbirth` date DEFAULT NULL,
3505   `branchcode` varchar(10) DEFAULT NULL,
3506   `categorycode` varchar(10) DEFAULT NULL,
3507   `dateenrolled` date DEFAULT NULL,
3508   `dateexpiry` date DEFAULT NULL,
3509   `date_renewed` date default NULL,
3510   `gonenoaddress` tinyint(1) DEFAULT NULL,
3511   `lost` tinyint(1) DEFAULT NULL,
3512   `debarred` date DEFAULT NULL,
3513   `debarredcomment` varchar(255) DEFAULT NULL,
3514   `contactname` LONGTEXT,
3515   `contactfirstname` MEDIUMTEXT,
3516   `contacttitle` MEDIUMTEXT,
3517   `borrowernotes` LONGTEXT,
3518   `relationship` varchar(100) DEFAULT NULL,
3519   `sex` varchar(1) DEFAULT NULL,
3520   `password` varchar(30) DEFAULT NULL,
3521   `flags` int(11) DEFAULT NULL,
3522   `userid` varchar(75) DEFAULT NULL,
3523   `opacnote` LONGTEXT,
3524   `contactnote` varchar(255) DEFAULT NULL,
3525   `sort1` varchar(80) DEFAULT NULL,
3526   `sort2` varchar(80) DEFAULT NULL,
3527   `altcontactfirstname` varchar(255) DEFAULT NULL,
3528   `altcontactsurname` varchar(255) DEFAULT NULL,
3529   `altcontactaddress1` varchar(255) DEFAULT NULL,
3530   `altcontactaddress2` varchar(255) DEFAULT NULL,
3531   `altcontactaddress3` varchar(255) DEFAULT NULL,
3532   `altcontactstate` MEDIUMTEXT,
3533   `altcontactzipcode` varchar(50) DEFAULT NULL,
3534   `altcontactcountry` MEDIUMTEXT,
3535   `altcontactphone` varchar(50) DEFAULT NULL,
3536   `smsalertnumber` varchar(50) DEFAULT NULL,
3537   `privacy` int(11) DEFAULT NULL,
3538   `extended_attributes` MEDIUMTEXT DEFAULT NULL,
3539   `gdpr_proc_consent` datetime, -- data processing consent
3540   PRIMARY KEY (`verification_token` (191),`borrowernumber`),
3541   KEY `verification_token` (`verification_token` (191)),
3542   KEY `borrowernumber` (`borrowernumber`)
3543 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3544
3545 --
3546 -- Table structure for table uploaded_files
3547 --
3548
3549 DROP TABLE IF EXISTS uploaded_files;
3550 CREATE TABLE uploaded_files (
3551     id int(11) NOT NULL AUTO_INCREMENT,
3552     hashvalue CHAR(40) NOT NULL,
3553     filename MEDIUMTEXT NOT NULL,
3554     dir MEDIUMTEXT NOT NULL,
3555     filesize int(11),
3556     dtcreated timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
3557     uploadcategorycode TEXT,
3558     owner int(11),
3559     public tinyint,
3560     permanent tinyint,
3561     PRIMARY KEY (id)
3562 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3563
3564 --
3565 -- Table structure for table linktracker
3566 -- This stores clicks to external links
3567 --
3568
3569 DROP TABLE IF EXISTS linktracker;
3570 CREATE TABLE linktracker (
3571    id int(11) NOT NULL AUTO_INCREMENT, -- primary key identifier
3572    biblionumber int(11) DEFAULT NULL, -- biblionumber of the record the link is from
3573    itemnumber int(11) DEFAULT NULL, -- itemnumber if applicable that the link was from
3574    borrowernumber int(11) DEFAULT NULL, -- borrowernumber who clicked the link
3575    url MEDIUMTEXT, -- the link itself
3576    timeclicked datetime DEFAULT NULL, -- the date and time the link was clicked
3577    PRIMARY KEY (id),
3578    KEY bibidx (biblionumber),
3579    KEY itemidx (itemnumber),
3580    KEY borridx (borrowernumber),
3581    KEY dateidx (timeclicked)
3582 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3583
3584 --
3585 -- Table structure for table 'plugin_data'
3586 --
3587
3588 CREATE TABLE IF NOT EXISTS plugin_data (
3589   plugin_class varchar(255) NOT NULL,
3590   plugin_key varchar(255) NOT NULL,
3591   plugin_value MEDIUMTEXT,
3592   PRIMARY KEY ( `plugin_class` (191), `plugin_key` (191) )
3593 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3594
3595 --
3596 -- Table structure for table patron_consent
3597 --
3598
3599 DROP TABLE IF EXISTS patron_consent;
3600 CREATE TABLE patron_consent (
3601   id int AUTO_INCREMENT,
3602   borrowernumber int NOT NULL,
3603   type enum('GDPR_PROCESSING' ), -- allows for future extension
3604   given_on datetime,
3605   refused_on datetime,
3606   PRIMARY KEY (id),
3607   FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE
3608 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3609
3610 --
3611 -- Table structure for table 'plugin_methods'
3612 --
3613
3614 DROP TABLE IF EXISTS plugin_methods;
3615 CREATE TABLE plugin_methods (
3616   plugin_class varchar(255) NOT NULL,
3617   plugin_method varchar(255) NOT NULL,
3618   PRIMARY KEY ( `plugin_class` (191), `plugin_method` (191) )
3619 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3620
3621 --
3622 -- Table structure for table `patron_lists`
3623 --
3624
3625 DROP TABLE IF EXISTS patron_lists;
3626 CREATE TABLE patron_lists (
3627   patron_list_id int(11) NOT NULL AUTO_INCREMENT, -- unique identifier
3628   name varchar(255) CHARACTER SET utf8mb4 NOT NULL,  -- the list's name
3629   owner int(11) NOT NULL,                         -- borrowernumber of the list creator
3630   shared tinyint(1) default 0,
3631   PRIMARY KEY (patron_list_id),
3632   KEY owner (owner)
3633 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3634
3635 --
3636 -- Constraints for table `patron_lists`
3637 --
3638 ALTER TABLE `patron_lists`
3639   ADD CONSTRAINT patron_lists_ibfk_1 FOREIGN KEY (`owner`) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE;
3640
3641 --
3642 -- Table structure for table 'patron_list_patrons'
3643 --
3644
3645 DROP TABLE IF EXISTS patron_list_patrons;
3646 CREATE TABLE patron_list_patrons (
3647   patron_list_patron_id int(11) NOT NULL AUTO_INCREMENT, -- unique identifier
3648   patron_list_id int(11) NOT NULL,                       -- the list this entry is part of
3649   borrowernumber int(11) NOT NULL,                       -- the borrower that is part of this list
3650   PRIMARY KEY (patron_list_patron_id),
3651   KEY patron_list_id (patron_list_id),
3652   KEY borrowernumber (borrowernumber)
3653 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3654
3655 --
3656 -- Constraints for table `patron_list_patrons`
3657 --
3658 ALTER TABLE `patron_list_patrons`
3659   ADD CONSTRAINT patron_list_patrons_ibfk_1 FOREIGN KEY (patron_list_id) REFERENCES patron_lists (patron_list_id) ON DELETE CASCADE ON UPDATE CASCADE,
3660   ADD CONSTRAINT patron_list_patrons_ibfk_2 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE;
3661
3662 --
3663 -- Table structure for table 'marc_modification_templates'
3664 --
3665
3666 CREATE TABLE IF NOT EXISTS marc_modification_templates (
3667     template_id int(11) NOT NULL AUTO_INCREMENT,
3668     name MEDIUMTEXT NOT NULL,
3669     PRIMARY KEY (template_id)
3670 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3671
3672 --
3673 -- Table structure for table 'marc_modification_template_actions'
3674 --
3675
3676 CREATE TABLE IF NOT EXISTS marc_modification_template_actions (
3677   mmta_id int(11) NOT NULL AUTO_INCREMENT,
3678   template_id int(11) NOT NULL,
3679   ordering int(3) NOT NULL,
3680   action ENUM('delete_field','add_field','update_field','move_field','copy_field','copy_and_replace_field') NOT NULL,
3681   field_number smallint(6) NOT NULL DEFAULT '0',
3682   from_field varchar(3) NOT NULL,
3683   from_subfield varchar(1) DEFAULT NULL,
3684   field_value varchar(100) DEFAULT NULL,
3685   to_field varchar(3) DEFAULT NULL,
3686   to_subfield varchar(1) DEFAULT NULL,
3687   to_regex_search MEDIUMTEXT,
3688   to_regex_replace MEDIUMTEXT,
3689   to_regex_modifiers varchar(8) DEFAULT '',
3690   conditional enum('if','unless') DEFAULT NULL,
3691   conditional_field varchar(3) DEFAULT NULL,
3692   conditional_subfield varchar(1) DEFAULT NULL,
3693   conditional_comparison enum('exists','not_exists','equals','not_equals') DEFAULT NULL,
3694   conditional_value MEDIUMTEXT,
3695   conditional_regex tinyint(1) NOT NULL DEFAULT '0',
3696   description MEDIUMTEXT,
3697   PRIMARY KEY (mmta_id),
3698   CONSTRAINT `mmta_ibfk_1` FOREIGN KEY (`template_id`) REFERENCES `marc_modification_templates` (`template_id`) ON DELETE CASCADE ON UPDATE CASCADE
3699 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3700
3701 --
3702 -- Table structure for table `misc_files`
3703 --
3704
3705 CREATE TABLE IF NOT EXISTS `misc_files` ( -- miscellaneous files attached to records from various tables
3706   `file_id` int(11) NOT NULL AUTO_INCREMENT, -- unique id for the file record
3707   `table_tag` varchar(255) NOT NULL, -- usually table name, or arbitrary unique tag
3708   `record_id` int(11) NOT NULL, -- record id from the table this file is associated to
3709   `file_name` varchar(255) NOT NULL, -- file name
3710   `file_type` varchar(255) NOT NULL, -- MIME type of the file
3711   `file_description` varchar(255) DEFAULT NULL, -- description given to the file
3712   `file_content` longblob NOT NULL, -- file content
3713   `date_uploaded` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, -- date and time the file was added
3714   PRIMARY KEY (`file_id`),
3715   KEY `table_tag` (`table_tag`),
3716   KEY `record_id` (`record_id`)
3717 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3718
3719 --
3720 -- Table structure for table `columns_settings`
3721 --
3722
3723 CREATE TABLE IF NOT EXISTS columns_settings (
3724     module varchar(255) NOT NULL,
3725     page varchar(255) NOT NULL,
3726     tablename varchar(255) NOT NULL,
3727     columnname varchar(255) NOT NULL,
3728     cannot_be_toggled int(1) NOT NULL DEFAULT 0,
3729     is_hidden int(1) NOT NULL DEFAULT 0,
3730     PRIMARY KEY(module (191), page (191), tablename (191), columnname (191))
3731 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3732
3733 --
3734 -- Table structure for table `tables_settings`
3735 --
3736
3737 CREATE TABLE IF NOT EXISTS tables_settings (
3738     module varchar(255) NOT NULL,
3739     page varchar(255) NOT NULL,
3740     tablename varchar(255) NOT NULL,
3741     default_display_length smallint(6) NOT NULL DEFAULT 20 ,
3742     default_sort_order varchar(255),
3743     PRIMARY KEY(module (191), page (191), tablename (191) )
3744 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3745
3746 --
3747 -- Table structure for table 'items_search_fields'
3748 --
3749
3750 DROP TABLE IF EXISTS items_search_fields;
3751 CREATE TABLE items_search_fields (
3752   name VARCHAR(255) NOT NULL,
3753   label VARCHAR(255) NOT NULL,
3754   tagfield CHAR(3) NOT NULL,
3755   tagsubfield CHAR(1) NULL DEFAULT NULL,
3756   authorised_values_category VARCHAR(32) NULL DEFAULT NULL,
3757   PRIMARY KEY(name (191)),
3758   CONSTRAINT items_search_fields_authorised_values_category
3759     FOREIGN KEY (authorised_values_category) REFERENCES authorised_value_categories (category_name)
3760     ON DELETE SET NULL ON UPDATE CASCADE
3761 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3762
3763 --
3764 -- Table structure for table 'discharges'
3765 --
3766
3767 DROP TABLE IF EXISTS discharges;
3768 CREATE TABLE discharges (
3769   discharge_id int(11) NOT NULL AUTO_INCREMENT,
3770   borrower int(11) DEFAULT NULL,
3771   needed timestamp NULL DEFAULT NULL,
3772   validated timestamp NULL DEFAULT NULL,
3773   PRIMARY KEY (discharge_id),
3774   KEY borrower_discharges_ibfk1 (borrower),
3775   CONSTRAINT borrower_discharges_ibfk1 FOREIGN KEY (borrower) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE
3776 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3777
3778 --
3779 -- Table structure for table additional_fields
3780 -- This table add the ability to add new fields for a record
3781 --
3782
3783 DROP TABLE IF EXISTS additional_fields;
3784 CREATE TABLE `additional_fields` (
3785   `id` int(11) NOT NULL AUTO_INCREMENT, -- primary key identifier
3786   `tablename` varchar(255) NOT NULL DEFAULT '', -- tablename of the new field
3787   `name` varchar(255) NOT NULL DEFAULT '', -- name of the field
3788   `authorised_value_category` varchar(16) NOT NULL DEFAULT '', -- is an authorised value category
3789   `marcfield` varchar(16) NOT NULL DEFAULT '', -- contains the marc field to copied into the record
3790   `searchable` tinyint(1) NOT NULL DEFAULT '0', -- is the field searchable?
3791   PRIMARY KEY (`id`),
3792   UNIQUE KEY `fields_uniq` (`tablename` (191),`name` (191))
3793 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3794
3795 --
3796 -- Table structure for table additional_field_values
3797 -- This table store values for additional fields
3798 --
3799
3800 DROP TABLE IF EXISTS additional_field_values;
3801 CREATE TABLE `additional_field_values` (
3802   `id` int(11) NOT NULL AUTO_INCREMENT, -- primary key identifier
3803   `field_id` int(11) NOT NULL, -- foreign key references additional_fields(id)
3804   `record_id` int(11) NOT NULL, -- record_id
3805   `value` varchar(255) NOT NULL DEFAULT '', -- value for this field
3806   PRIMARY KEY (`id`),
3807   UNIQUE KEY `field_record` (`field_id`,`record_id`),
3808   CONSTRAINT `afv_fk` FOREIGN KEY (`field_id`) REFERENCES `additional_fields` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
3809 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3810
3811 --
3812 -- Table structure for table 'localization'
3813 --
3814
3815 DROP TABLE IF EXISTS localization;
3816 CREATE TABLE `localization` (
3817       localization_id int(11) NOT NULL AUTO_INCREMENT,
3818       entity varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL,
3819       code varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
3820       lang varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, -- could be a foreign key
3821       translation MEDIUMTEXT COLLATE utf8mb4_unicode_ci,
3822       PRIMARY KEY (localization_id),
3823       UNIQUE KEY `entity_code_lang` (`entity`,`code`,`lang`)
3824 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3825
3826 --
3827 -- Table structure for table 'audio_alerts'
3828 --
3829
3830 DROP TABLE IF EXISTS audio_alerts;
3831 CREATE TABLE audio_alerts (
3832   id int(11) NOT NULL AUTO_INCREMENT,
3833   precedence smallint(5) unsigned NOT NULL,
3834   selector varchar(255) NOT NULL,
3835   sound varchar(255) NOT NULL,
3836   PRIMARY KEY (id),
3837   KEY precedence (precedence)
3838 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3839
3840 --
3841 -- Table structure for table 'edifact_ean'
3842 --
3843
3844 DROP TABLE IF EXISTS edifact_ean;
3845 CREATE TABLE IF NOT EXISTS edifact_ean (
3846   ee_id int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
3847   description VARCHAR(128) NULL DEFAULT NULL,
3848   branchcode VARCHAR(10) NULL DEFAULT NULL REFERENCES branches (branchcode),
3849   ean VARCHAR(15) NOT NULL,
3850   id_code_qualifier VARCHAR(3) NOT NULL DEFAULT '14',
3851   CONSTRAINT efk_branchcode FOREIGN KEY ( branchcode ) REFERENCES branches ( branchcode )
3852 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3853
3854 --
3855 -- Table structure for table `courses`
3856 --
3857
3858 -- The courses table stores the courses created for the
3859 -- course reserves feature.
3860
3861 DROP TABLE IF EXISTS courses;
3862 CREATE TABLE `courses` (
3863   `course_id` int(11) NOT NULL AUTO_INCREMENT, -- unique id for the course
3864   `department` varchar(80) DEFAULT NULL, -- the authorised value for the DEPARTMENT
3865   `course_number` varchar(255) DEFAULT NULL, -- the "course number" assigned to a course
3866   `section` varchar(255) DEFAULT NULL, -- the 'section' of a course
3867   `course_name` varchar(255) DEFAULT NULL, -- the name of the course
3868   `term` varchar(80) DEFAULT NULL, -- the authorised value for the TERM
3869   `staff_note` LONGTEXT, -- the text of the staff only note
3870   `public_note` LONGTEXT, -- the text of the public / opac note
3871   `students_count` varchar(20) DEFAULT NULL, -- how many students will be taking this course/section
3872   `enabled` enum('yes','no') NOT NULL DEFAULT 'yes', -- determines whether the course is active
3873   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
3874    PRIMARY KEY (`course_id`)
3875 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3876
3877 --
3878 -- Table structure for table `course_instructors`
3879 --
3880
3881 -- The course instructors table links Koha borrowers to the
3882 -- courses they are teaching. Many instructors can teach many
3883 -- courses. course_instructors is just a many-to-many join table.
3884
3885 DROP TABLE IF EXISTS course_instructors;
3886 CREATE TABLE `course_instructors` (
3887   `course_id` int(11) NOT NULL, -- foreign key to link to courses.course_id
3888   `borrowernumber` int(11) NOT NULL, -- foreign key to link to borrowers.borrowernumber for instructor information
3889   PRIMARY KEY (`course_id`,`borrowernumber`),
3890   KEY `borrowernumber` (`borrowernumber`)
3891 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3892
3893 --
3894 -- Constraints for table `course_instructors`
3895 --
3896 ALTER TABLE `course_instructors`
3897   ADD CONSTRAINT `course_instructors_ibfk_2` FOREIGN KEY (`course_id`) REFERENCES `courses` (`course_id`),
3898   ADD CONSTRAINT `course_instructors_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE;
3899
3900 --
3901 -- Table structure for table `course_items`
3902 --
3903
3904 -- If an item is placed on course reserve for one or more courses
3905 -- it will have an entry in this table. No matter how many courses an item
3906 -- is part of, it will only have one row in this table.
3907
3908 DROP TABLE IF EXISTS course_items;
3909 CREATE TABLE `course_items` (
3910   `ci_id` int(11) NOT NULL AUTO_INCREMENT, -- course item id
3911   `itemnumber` int(11) NOT NULL, -- items.itemnumber for the item on reserve
3912   `itype` varchar(10) DEFAULT NULL, -- new itemtype for the item to have while on reserve (optional)
3913   `itype_enabled` tinyint(1) NOT NULL DEFAULT 0, -- indicates if itype should be changed while on course reserve
3914   `itype_storage` varchar(10) DEFAULT NULL, -- a place to store the itype when item is on course reserve
3915   `ccode` varchar(80) DEFAULT NULL, -- new category code for the item to have while on reserve (optional)
3916   `ccode_enabled` tinyint(1) NOT NULL DEFAULT 0, -- indicates if ccode should be changed while on course reserve
3917   `ccode_storage` varchar(80) DEFAULT NULL, -- a place to store the ccode when item is on course reserve
3918   `homebranch` varchar(10) DEFAULT NULL, -- new home branch for the item to have while on reserve (optional)
3919   `homebranch_enabled` tinyint(1) NOT NULL DEFAULT 0, -- indicates if homebranch should be changed while on course reserve
3920   `homebranch_storage` varchar(10) DEFAULT NULL, -- a place to store the homebranch when item is on course reserve
3921   `holdingbranch` varchar(10) DEFAULT NULL, -- new holding branch for the item to have while on reserve (optional)
3922   `holdingbranch_enabled` tinyint(1) NOT NULL DEFAULT 0, -- indicates if itype should be changed while on course reserve
3923   `holdingbranch_storage` varchar(10) DEFAULT NULL, -- a place to store the holdingbranch when item is on course reserve
3924   `location` varchar(80) DEFAULT NULL, -- new shelving location for the item to have while on reseve (optional)
3925   `location_enabled` tinyint(1) NOT NULL DEFAULT 0, -- indicates if itype should be changed while on course reserve
3926   `location_storage` varchar(80) DEFAULT NULL, -- a place to store the location when the item is on course reserve
3927   `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'
3928   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
3929    PRIMARY KEY (`ci_id`),
3930    UNIQUE KEY `itemnumber` (`itemnumber`),
3931    KEY `holdingbranch` (`holdingbranch`)
3932 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3933
3934 --
3935 -- Constraints for table `course_items`
3936 --
3937 ALTER TABLE `course_items`
3938   ADD CONSTRAINT `course_items_ibfk_2` FOREIGN KEY (`holdingbranch`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE,
3939   ADD CONSTRAINT `course_items_ibfk_1` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
3940   ADD CONSTRAINT fk_course_items_homebranch FOREIGN KEY (homebranch) REFERENCES branches (branchcode) ON DELETE CASCADE ON UPDATE CASCADE,
3941   ADD CONSTRAINT fk_course_items_homebranch_storage FOREIGN KEY (homebranch_storage) REFERENCES branches (branchcode) ON DELETE CASCADE ON UPDATE CASCADE;
3942
3943 --
3944 -- Table structure for table `course_reserves`
3945 --
3946
3947 -- This table connects an item placed on course reserve to a course it is on reserve for.
3948 -- There will be a row in this table for each course an item is on reserve for.
3949
3950 DROP TABLE IF EXISTS course_reserves;
3951 CREATE TABLE `course_reserves` (
3952   `cr_id` int(11) NOT NULL AUTO_INCREMENT,
3953   `course_id` int(11) NOT NULL, -- foreign key to link to courses.course_id
3954   `ci_id` int(11) NOT NULL, -- foreign key to link to courses_items.ci_id
3955   `staff_note` LONGTEXT, -- staff only note
3956   `public_note` LONGTEXT, -- public, OPAC visible note
3957   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
3958    PRIMARY KEY (`cr_id`),
3959    UNIQUE KEY `pseudo_key` (`course_id`,`ci_id`),
3960    KEY `course_id` (`course_id`)
3961 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3962
3963 --
3964 -- Constraints for table `course_reserves`
3965 --
3966 ALTER TABLE `course_reserves`
3967   ADD CONSTRAINT `course_reserves_ibfk_1` FOREIGN KEY (`course_id`) REFERENCES `courses` (`course_id`),
3968   ADD CONSTRAINT `course_reserves_ibfk_2` FOREIGN KEY (`ci_id`) REFERENCES `course_items` (`ci_id`) ON DELETE CASCADE ON UPDATE CASCADE;
3969
3970 --
3971 -- Table structure for table `hold_fill_targets`
3972 --
3973
3974 DROP TABLE IF EXISTS `hold_fill_targets`;
3975 CREATE TABLE `hold_fill_targets` (
3976   `borrowernumber` int(11) NOT NULL,
3977   `biblionumber` int(11) NOT NULL,
3978   `itemnumber` int(11) NOT NULL,
3979   `source_branchcode`  varchar(10) default NULL,
3980   `item_level_request` tinyint(4) NOT NULL default 0,
3981   `reserve_id` int(11) DEFAULT NULL,
3982   PRIMARY KEY `itemnumber` (`itemnumber`),
3983   KEY `bib_branch` (`biblionumber`, `source_branchcode`),
3984   CONSTRAINT `hold_fill_targets_ibfk_1` FOREIGN KEY (`borrowernumber`)
3985     REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
3986   CONSTRAINT `hold_fill_targets_ibfk_2` FOREIGN KEY (`biblionumber`)
3987     REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE,
3988   CONSTRAINT `hold_fill_targets_ibfk_3` FOREIGN KEY (`itemnumber`)
3989     REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
3990   CONSTRAINT `hold_fill_targets_ibfk_4` FOREIGN KEY (`source_branchcode`)
3991     REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE
3992 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
3993
3994 --
3995 -- Table structure for table `housebound_profile`
3996 --
3997
3998 DROP TABLE IF EXISTS `housebound_profile`;
3999 CREATE TABLE `housebound_profile` (
4000   `borrowernumber` int(11) NOT NULL, -- Number of the borrower associated with this profile.
4001   `day` MEDIUMTEXT NOT NULL,  -- The preferred day of the week for delivery.
4002   `frequency` MEDIUMTEXT NOT NULL, -- The Authorised_Value definining the pattern for delivery.
4003   `fav_itemtypes` MEDIUMTEXT default NULL, -- Free text describing preferred itemtypes.
4004   `fav_subjects` MEDIUMTEXT default NULL, -- Free text describing preferred subjects.
4005   `fav_authors` MEDIUMTEXT default NULL, -- Free text describing preferred authors.
4006   `referral` MEDIUMTEXT default NULL, -- Free text indicating how the borrower was added to the service.
4007   `notes` MEDIUMTEXT default NULL, -- Free text for additional notes.
4008   PRIMARY KEY  (`borrowernumber`),
4009   CONSTRAINT `housebound_profile_bnfk`
4010     FOREIGN KEY (`borrowernumber`)
4011     REFERENCES `borrowers` (`borrowernumber`)
4012     ON UPDATE CASCADE ON DELETE CASCADE
4013 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4014
4015 --
4016 -- Table structure for table `housebound_visit`
4017 --
4018
4019 DROP TABLE IF EXISTS `housebound_visit`;
4020 CREATE TABLE `housebound_visit` (
4021   `id` int(11) NOT NULL auto_increment, -- ID of the visit.
4022   `borrowernumber` int(11) NOT NULL, -- Number of the borrower, & the profile, linked to this visit.
4023   `appointment_date` date default NULL, -- Date of visit.
4024   `day_segment` varchar(10),  -- Rough time frame: 'morning', 'afternoon' 'evening'
4025   `chooser_brwnumber` int(11) default NULL, -- Number of the borrower to choose items  for delivery.
4026   `deliverer_brwnumber` int(11) default NULL, -- Number of the borrower to deliver items.
4027   PRIMARY KEY  (`id`),
4028   CONSTRAINT `houseboundvisit_bnfk`
4029     FOREIGN KEY (`borrowernumber`)
4030     REFERENCES `housebound_profile` (`borrowernumber`)
4031     ON UPDATE CASCADE ON DELETE CASCADE,
4032   CONSTRAINT `houseboundvisit_bnfk_1`
4033     FOREIGN KEY (`chooser_brwnumber`)
4034     REFERENCES `borrowers` (`borrowernumber`)
4035     ON UPDATE CASCADE ON DELETE CASCADE,
4036   CONSTRAINT `houseboundvisit_bnfk_2`
4037     FOREIGN KEY (`deliverer_brwnumber`)
4038     REFERENCES `borrowers` (`borrowernumber`)
4039     ON UPDATE CASCADE ON DELETE CASCADE
4040 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4041
4042 --
4043 -- Table structure for table `housebound_role`
4044 --
4045
4046 DROP TABLE IF EXISTS `housebound_role`;
4047 CREATE TABLE IF NOT EXISTS `housebound_role` (
4048   `borrowernumber_id` int(11) NOT NULL, -- borrowernumber link
4049   `housebound_chooser` tinyint(1) NOT NULL DEFAULT 0, -- set to 1 to indicate this patron is a housebound chooser volunteer
4050   `housebound_deliverer` tinyint(1) NOT NULL DEFAULT 0, -- set to 1 to indicate this patron is a housebound deliverer volunteer
4051   PRIMARY KEY (`borrowernumber_id`),
4052   CONSTRAINT `houseboundrole_bnfk`
4053     FOREIGN KEY (`borrowernumber_id`)
4054     REFERENCES `borrowers` (`borrowernumber`)
4055     ON UPDATE CASCADE ON DELETE CASCADE
4056 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4057
4058 --
4059 -- Table structure for table 'article_requests'
4060 --
4061
4062 DROP TABLE IF EXISTS `article_requests`;
4063 CREATE TABLE `article_requests` (
4064   `id` int(11) NOT NULL AUTO_INCREMENT,
4065   `borrowernumber` int(11) NOT NULL,
4066   `biblionumber` int(11) NOT NULL,
4067   `itemnumber` int(11) DEFAULT NULL,
4068   `branchcode` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
4069   `title` MEDIUMTEXT,
4070   `author` MEDIUMTEXT,
4071   `volume` MEDIUMTEXT,
4072   `issue` MEDIUMTEXT,
4073   `date` MEDIUMTEXT,
4074   `pages` MEDIUMTEXT,
4075   `chapters` MEDIUMTEXT,
4076   `patron_notes` MEDIUMTEXT,
4077   `status` enum('PENDING','PROCESSING','COMPLETED','CANCELED') NOT NULL DEFAULT 'PENDING',
4078   `notes` MEDIUMTEXT,
4079   `created_on` timestamp NULL DEFAULT NULL, -- Be careful with two timestamps in one table not allowing NULL
4080   `updated_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
4081   PRIMARY KEY (`id`),
4082   KEY `borrowernumber` (`borrowernumber`),
4083   KEY `biblionumber` (`biblionumber`),
4084   KEY `itemnumber` (`itemnumber`),
4085   KEY `branchcode` (`branchcode`),
4086   CONSTRAINT `article_requests_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
4087   CONSTRAINT `article_requests_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE,
4088   CONSTRAINT `article_requests_ibfk_3` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE SET NULL ON UPDATE CASCADE,
4089   CONSTRAINT `article_requests_ibfk_4` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE SET NULL ON UPDATE CASCADE
4090 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4091
4092 --
4093 -- Table structure for table `biblio_metadata`
4094 --
4095
4096 DROP TABLE IF EXISTS `biblio_metadata`;
4097 CREATE TABLE biblio_metadata (
4098     `id` INT(11) NOT NULL AUTO_INCREMENT,
4099     `biblionumber` INT(11) NOT NULL,
4100     `format` VARCHAR(16) NOT NULL,
4101     `schema` VARCHAR(16) NOT NULL,
4102     `metadata` LONGTEXT NOT NULL,
4103     `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
4104     PRIMARY KEY(id),
4105     UNIQUE KEY `biblio_metadata_uniq_key` (`biblionumber`,`format`,`schema`),
4106     CONSTRAINT `record_metadata_fk_1` FOREIGN KEY (biblionumber) REFERENCES biblio (biblionumber) ON DELETE CASCADE ON UPDATE CASCADE,
4107     KEY `timestamp` (`timestamp`)
4108 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4109
4110 --
4111 -- Table structure for table `deletedbiblio_metadata`
4112 --
4113
4114 DROP TABLE IF EXISTS `deletedbiblio_metadata`;
4115 CREATE TABLE deletedbiblio_metadata (
4116     `id` INT(11) NOT NULL AUTO_INCREMENT,
4117     `biblionumber` INT(11) NOT NULL,
4118     `format` VARCHAR(16) NOT NULL,
4119     `schema` VARCHAR(16) NOT NULL,
4120     `metadata` LONGTEXT NOT NULL,
4121     `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
4122     PRIMARY KEY(id),
4123     UNIQUE KEY `deletedbiblio_metadata_uniq_key` (`biblionumber`,`format`,`schema`),
4124     CONSTRAINT `deletedrecord_metadata_fk_1` FOREIGN KEY (biblionumber) REFERENCES deletedbiblio (biblionumber) ON DELETE CASCADE ON UPDATE CASCADE,
4125     KEY `timestamp` (`timestamp`)
4126 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4127
4128 --
4129 -- Table structure for table 'club_templates'
4130 --
4131
4132 CREATE TABLE IF NOT EXISTS club_templates (
4133   id int(11) NOT NULL AUTO_INCREMENT,
4134   `name` TEXT NOT NULL,
4135   description MEDIUMTEXT,
4136   is_enrollable_from_opac tinyint(1) NOT NULL DEFAULT '0',
4137   is_email_required tinyint(1) NOT NULL DEFAULT '0',
4138   branchcode varchar(10) NULL DEFAULT NULL,
4139   date_created timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
4140   date_updated timestamp NULL DEFAULT NULL,
4141   is_deletable tinyint(1) NOT NULL DEFAULT '1',
4142   PRIMARY KEY (id),
4143   KEY ct_branchcode (branchcode),
4144   CONSTRAINT `club_templates_ibfk_1` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE
4145 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4146
4147 --
4148 -- Table structure for table 'clubs'
4149 --
4150
4151 CREATE TABLE IF NOT EXISTS clubs (
4152   id int(11) NOT NULL AUTO_INCREMENT,
4153   club_template_id int(11) NOT NULL,
4154   `name` TEXT NOT NULL,
4155   description MEDIUMTEXT,
4156   date_start date DEFAULT NULL,
4157   date_end date DEFAULT NULL,
4158   branchcode varchar(10) NULL DEFAULT NULL,
4159   date_created timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
4160   date_updated timestamp NULL DEFAULT NULL,
4161   PRIMARY KEY (id),
4162   KEY club_template_id (club_template_id),
4163   KEY branchcode (branchcode),
4164   CONSTRAINT clubs_ibfk_1 FOREIGN KEY (club_template_id) REFERENCES club_templates (id) ON DELETE CASCADE ON UPDATE CASCADE,
4165   CONSTRAINT clubs_ibfk_2 FOREIGN KEY (branchcode) REFERENCES branches (branchcode)
4166 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4167
4168 --
4169 -- Table structure for table 'club_holds'
4170 --
4171
4172 CREATE TABLE IF NOT EXISTS club_holds (
4173     id        INT(11) NOT NULL AUTO_INCREMENT,
4174     club_id   INT(11) NOT NULL, -- id for the club the hold was generated for
4175     biblio_id INT(11) NOT NULL, -- id for the bibliographic record the hold has been placed against
4176     item_id   INT(11) NULL DEFAULT NULL, -- If item-level, the id for the item the hold has been placed agains
4177     date_created TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, -- Timestamp for the placed hold
4178     PRIMARY KEY (id),
4179     -- KEY club_id (club_id),
4180     CONSTRAINT clubs_holds_ibfk_1 FOREIGN KEY (club_id)   REFERENCES clubs  (id) ON DELETE CASCADE ON UPDATE CASCADE,
4181     CONSTRAINT clubs_holds_ibfk_2 FOREIGN KEY (biblio_id) REFERENCES biblio (biblionumber) ON DELETE CASCADE ON UPDATE CASCADE,
4182     CONSTRAINT clubs_holds_ibfk_3 FOREIGN KEY (item_id)   REFERENCES items  (itemnumber) ON DELETE CASCADE ON UPDATE CASCADE
4183 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4184
4185 --
4186 -- Table structure for table 'club_holds_to_patron_holds'
4187 --
4188
4189 CREATE TABLE IF NOT EXISTS club_holds_to_patron_holds (
4190     id              INT(11) NOT NULL AUTO_INCREMENT,
4191     club_hold_id    INT(11) NOT NULL,
4192     patron_id       INT(11) NOT NULL,
4193     hold_id         INT(11),
4194     error_code      ENUM ( 'damaged', 'ageRestricted', 'itemAlreadyOnHold',
4195                         'tooManyHoldsForThisRecord', 'tooManyReservesToday',
4196                         'tooManyReserves', 'notReservable', 'cannotReserveFromOtherBranches',
4197                         'libraryNotFound', 'libraryNotPickupLocation', 'cannotBeTransferred'
4198                     ) NULL DEFAULT NULL,
4199     error_message   varchar(100) NULL DEFAULT NULL,
4200     PRIMARY KEY (id),
4201     -- KEY club_hold_id (club_hold_id),
4202     CONSTRAINT clubs_holds_paton_holds_ibfk_1 FOREIGN KEY (club_hold_id) REFERENCES club_holds (id) ON DELETE CASCADE ON UPDATE CASCADE,
4203     CONSTRAINT clubs_holds_paton_holds_ibfk_2 FOREIGN KEY (patron_id) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE,
4204     CONSTRAINT clubs_holds_paton_holds_ibfk_3 FOREIGN KEY (hold_id) REFERENCES reserves (reserve_id) ON DELETE CASCADE ON UPDATE CASCADE
4205 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4206
4207 --
4208 -- Table structure for table 'club_enrollments'
4209 --
4210
4211 CREATE TABLE IF NOT EXISTS club_enrollments (
4212   id int(11) NOT NULL AUTO_INCREMENT,
4213   club_id int(11) NOT NULL,
4214   borrowernumber int(11) NOT NULL,
4215   date_enrolled timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
4216   date_canceled timestamp NULL DEFAULT NULL,
4217   date_created timestamp NULL DEFAULT NULL,
4218   date_updated timestamp NULL DEFAULT NULL,
4219   branchcode varchar(10) NULL DEFAULT NULL,
4220   PRIMARY KEY (id),
4221   KEY club_id (club_id),
4222   KEY borrowernumber (borrowernumber),
4223   KEY branchcode (branchcode),
4224   CONSTRAINT club_enrollments_ibfk_1 FOREIGN KEY (club_id) REFERENCES clubs (id) ON DELETE CASCADE ON UPDATE CASCADE,
4225   CONSTRAINT club_enrollments_ibfk_2 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE,
4226   CONSTRAINT club_enrollments_ibfk_3 FOREIGN KEY (branchcode) REFERENCES branches (branchcode) ON DELETE SET NULL ON UPDATE CASCADE
4227 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4228
4229 --
4230 -- Table structure for table 'club_template_enrollment_fields'
4231 --
4232
4233 CREATE TABLE IF NOT EXISTS club_template_enrollment_fields (
4234   id int(11) NOT NULL AUTO_INCREMENT,
4235   club_template_id int(11) NOT NULL,
4236   `name` TEXT NOT NULL,
4237   description MEDIUMTEXT,
4238   authorised_value_category varchar(16) DEFAULT NULL,
4239   PRIMARY KEY (id),
4240   KEY club_template_id (club_template_id),
4241   CONSTRAINT club_template_enrollment_fields_ibfk_1 FOREIGN KEY (club_template_id) REFERENCES club_templates (id) ON DELETE CASCADE ON UPDATE CASCADE
4242 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4243
4244 --
4245 -- Table structure for table 'club_enrollment_fields'
4246 --
4247
4248 CREATE TABLE IF NOT EXISTS club_enrollment_fields (
4249   id int(11) NOT NULL AUTO_INCREMENT,
4250   club_enrollment_id int(11) NOT NULL,
4251   club_template_enrollment_field_id int(11) NOT NULL,
4252   `value` MEDIUMTEXT NOT NULL,
4253   PRIMARY KEY (id),
4254   KEY club_enrollment_id (club_enrollment_id),
4255   KEY club_template_enrollment_field_id (club_template_enrollment_field_id),
4256   CONSTRAINT club_enrollment_fields_ibfk_1 FOREIGN KEY (club_enrollment_id) REFERENCES club_enrollments (id) ON DELETE CASCADE ON UPDATE CASCADE,
4257   CONSTRAINT club_enrollment_fields_ibfk_2 FOREIGN KEY (club_template_enrollment_field_id) REFERENCES club_template_enrollment_fields (id) ON DELETE CASCADE ON UPDATE CASCADE
4258 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4259
4260 --
4261 -- Table structure for table 'club_template_fields'
4262 --
4263
4264 CREATE TABLE IF NOT EXISTS club_template_fields (
4265   id int(11) NOT NULL AUTO_INCREMENT,
4266   club_template_id int(11) NOT NULL,
4267   `name` TEXT NOT NULL,
4268   description MEDIUMTEXT,
4269   authorised_value_category varchar(16) DEFAULT NULL,
4270   PRIMARY KEY (id),
4271   KEY club_template_id (club_template_id),
4272   CONSTRAINT club_template_fields_ibfk_1 FOREIGN KEY (club_template_id) REFERENCES club_templates (id) ON DELETE CASCADE ON UPDATE CASCADE
4273 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4274
4275 --
4276 -- Table structure for table 'club_fields'
4277 --
4278
4279 CREATE TABLE IF NOT EXISTS club_fields (
4280   id int(11) NOT NULL AUTO_INCREMENT,
4281   club_template_field_id int(11) NOT NULL,
4282   club_id int(11) NOT NULL,
4283   `value` MEDIUMTEXT,
4284   PRIMARY KEY (id),
4285   KEY club_template_field_id (club_template_field_id),
4286   KEY club_id (club_id),
4287   CONSTRAINT club_fields_ibfk_3 FOREIGN KEY (club_template_field_id) REFERENCES club_template_fields (id) ON DELETE CASCADE ON UPDATE CASCADE,
4288   CONSTRAINT club_fields_ibfk_4 FOREIGN KEY (club_id) REFERENCES clubs (id) ON DELETE CASCADE ON UPDATE CASCADE
4289 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4290
4291 --
4292 -- Table structure for table 'guarantors_guarantees'
4293 --
4294
4295 DROP TABLE IF EXISTS borrower_relationships;
4296 CREATE TABLE `borrower_relationships` (
4297       id INT(11) NOT NULL AUTO_INCREMENT,
4298       guarantor_id INT(11) NULL DEFAULT NULL,
4299       guarantee_id INT(11) NOT NULL,
4300       relationship VARCHAR(100) NOT NULL,
4301       PRIMARY KEY (id),
4302       UNIQUE KEY `guarantor_guarantee_idx` ( `guarantor_id`, `guarantee_id` ),
4303       CONSTRAINT r_guarantor FOREIGN KEY ( guarantor_id ) REFERENCES borrowers ( borrowernumber ) ON UPDATE CASCADE ON DELETE CASCADE,
4304       CONSTRAINT r_guarantee FOREIGN KEY ( guarantee_id ) REFERENCES borrowers ( borrowernumber ) ON UPDATE CASCADE ON DELETE CASCADE
4305 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4306
4307 --
4308 -- Table structure for table `illrequests`
4309 --
4310
4311 DROP TABLE IF EXISTS `illrequests`;
4312 CREATE TABLE illrequests (
4313     illrequest_id serial PRIMARY KEY,           -- ILL request number
4314     borrowernumber integer DEFAULT NULL,        -- Patron associated with request
4315     biblio_id integer DEFAULT NULL,             -- Potential bib linked to request
4316     branchcode varchar(50) NOT NULL,            -- The branch associated with the request
4317     status varchar(50) DEFAULT NULL,            -- Current Koha status of request
4318     status_alias varchar(80) DEFAULT NULL,      -- Foreign key to relevant authorised_values.authorised_value
4319     placed date DEFAULT NULL,                   -- Date the request was placed
4320     replied date DEFAULT NULL,                  -- Last API response
4321     updated timestamp DEFAULT CURRENT_TIMESTAMP -- Last modification to request
4322       ON UPDATE CURRENT_TIMESTAMP,
4323     completed date DEFAULT NULL,                -- Date the request was completed
4324     medium varchar(30) DEFAULT NULL,            -- The Koha request type
4325     accessurl varchar(500) DEFAULT NULL,        -- Potential URL for accessing item
4326     cost varchar(20) DEFAULT NULL,              -- Quotes cost of request
4327     price_paid varchar(20) DEFAULT NULL,              -- Final cost of request
4328     notesopac MEDIUMTEXT DEFAULT NULL,                -- Patron notes attached to request
4329     notesstaff MEDIUMTEXT DEFAULT NULL,               -- Staff notes attached to request
4330     orderid varchar(50) DEFAULT NULL,           -- Backend id attached to request
4331     backend varchar(20) DEFAULT NULL,           -- The backend used to create request
4332     CONSTRAINT `illrequests_bnfk`
4333       FOREIGN KEY (`borrowernumber`)
4334       REFERENCES `borrowers` (`borrowernumber`)
4335       ON UPDATE CASCADE ON DELETE CASCADE,
4336     CONSTRAINT `illrequests_bcfk_2`
4337       FOREIGN KEY (`branchcode`)
4338       REFERENCES `branches` (`branchcode`)
4339       ON UPDATE CASCADE ON DELETE CASCADE,
4340     CONSTRAINT `illrequests_safk`
4341       FOREIGN KEY (`status_alias`)
4342       REFERENCES `authorised_values` (`authorised_value`)
4343       ON UPDATE CASCADE ON DELETE SET NULL
4344 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4345
4346 --
4347 -- Table structure for table `illrequestattributes`
4348 --
4349
4350 DROP TABLE IF EXISTS `illrequestattributes`;
4351 CREATE TABLE illrequestattributes (
4352     illrequest_id bigint(20) unsigned NOT NULL, -- ILL request number
4353     type varchar(200) NOT NULL,                 -- API ILL property name
4354     value MEDIUMTEXT NOT NULL,                  -- API ILL property value
4355     readonly tinyint(1) NOT NULL DEFAULT 1,     -- Is this attribute read only
4356     PRIMARY KEY  (`illrequest_id`, `type` (191)),
4357     CONSTRAINT `illrequestattributes_ifk`
4358       FOREIGN KEY (illrequest_id)
4359       REFERENCES `illrequests` (`illrequest_id`)
4360       ON UPDATE CASCADE ON DELETE CASCADE
4361 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4362
4363 --
4364 -- Table structure for table 'library_groups'
4365 --
4366
4367 DROP TABLE IF EXISTS `library_groups`;
4368 CREATE TABLE library_groups (
4369     id INT(11) NOT NULL auto_increment,    -- unique id for each group
4370     parent_id INT(11) NULL DEFAULT NULL,   -- if this is a child group, the id of the parent group
4371     branchcode VARCHAR(10) NULL DEFAULT NULL, -- The branchcode of a branch belonging to the parent group
4372     title VARCHAR(100) NULL DEFAULT NULL,     -- Short description of the goup
4373     description MEDIUMTEXT NULL DEFAULT NULL,    -- Longer explanation of the group, if necessary
4374     ft_hide_patron_info tinyint(1) NOT NULL DEFAULT 0, -- Turn on the feature "Hide patron's info" for this group
4375     ft_search_groups_opac tinyint(1) NOT NULL DEFAULT 0, -- Use this group for staff side search groups
4376     ft_search_groups_staff tinyint(1) NOT NULL DEFAULT 0, -- Use this group for opac side search groups
4377     ft_local_hold_group tinyint(1) NOT NULL DEFAULT 0, -- Use this group to identify libraries as pick up location for holds
4378     created_on TIMESTAMP NULL,             -- Date and time of creation
4379     updated_on TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, -- Date and time of last
4380     PRIMARY KEY id ( id ),
4381     FOREIGN KEY (parent_id) REFERENCES library_groups(id) ON UPDATE CASCADE ON DELETE CASCADE,
4382     FOREIGN KEY (branchcode) REFERENCES branches(branchcode) ON UPDATE CASCADE ON DELETE CASCADE,
4383     UNIQUE KEY title ( title ),
4384     UNIQUE KEY library_groups_uniq_2 ( parent_id, branchcode )
4385 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4386
4387 --
4388 -- Table structure for table 'oauth_access_tokens'
4389 --
4390
4391 DROP TABLE IF EXISTS `oauth_access_tokens`;
4392 CREATE TABLE `oauth_access_tokens` (
4393     `access_token` VARCHAR(191) NOT NULL, -- generarated access token
4394     `client_id`    VARCHAR(191) NOT NULL, -- the client id the access token belongs to
4395     `expires`      INT NOT NULL,          -- expiration time in seconds
4396     PRIMARY KEY (`access_token`)
4397 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4398
4399 --
4400 -- Table structure for table illcomments
4401 --
4402
4403 DROP TABLE IF EXISTS `illcomments`;
4404 CREATE TABLE illcomments (
4405     illcomment_id int(11) NOT NULL AUTO_INCREMENT, -- Unique ID of the comment
4406     illrequest_id bigint(20) unsigned NOT NULL,    -- ILL request number
4407     borrowernumber integer DEFAULT NULL,           -- Link to the user who made the comment (could be librarian, patron or ILL partner library)
4408     comment text DEFAULT NULL,                     -- The text of the comment
4409     timestamp timestamp DEFAULT CURRENT_TIMESTAMP, -- Date and time when the comment was made
4410     PRIMARY KEY  ( illcomment_id ),
4411     CONSTRAINT illcomments_bnfk
4412       FOREIGN KEY ( borrowernumber )
4413       REFERENCES  borrowers  ( borrowernumber )
4414       ON UPDATE CASCADE ON DELETE CASCADE,
4415     CONSTRAINT illcomments_ifk
4416       FOREIGN KEY (illrequest_id)
4417       REFERENCES illrequests ( illrequest_id )
4418       ON UPDATE CASCADE ON DELETE CASCADE
4419 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4420
4421 --
4422 -- Table structure for table `circulation_rules`
4423 --
4424
4425 DROP TABLE IF EXISTS `circulation_rules`;
4426 CREATE TABLE `circulation_rules` (
4427   `id` int(11) NOT NULL auto_increment,
4428   `branchcode` varchar(10) NULL default NULL,
4429   `categorycode` varchar(10) NULL default NULL,
4430   `itemtype` varchar(10) NULL default NULL,
4431   `rule_name` varchar(32) NOT NULL,
4432   `rule_value` varchar(32) NOT NULL,
4433   PRIMARY KEY (`id`),
4434   CONSTRAINT `circ_rules_ibfk_1` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE,
4435   CONSTRAINT `circ_rules_ibfk_2` FOREIGN KEY (`categorycode`) REFERENCES `categories` (`categorycode`) ON DELETE CASCADE ON UPDATE CASCADE,
4436   CONSTRAINT `circ_rules_ibfk_3` FOREIGN KEY (`itemtype`) REFERENCES `itemtypes` (`itemtype`) ON DELETE CASCADE ON UPDATE CASCADE,
4437   KEY `rule_name` (`rule_name`),
4438   UNIQUE (`branchcode`,`categorycode`,`itemtype`,`rule_name`)
4439 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4440
4441 --
4442 -- Table structure for table `stockrotationrotas`
4443 --
4444
4445 DROP TABLE IF EXISTS stockrotationrotas;
4446 CREATE TABLE stockrotationrotas (
4447     rota_id int(11) auto_increment,         -- Stockrotation rota ID
4448     title varchar(100) NOT NULL,            -- Title for this rota
4449     description text NOT NULL,              -- Description for this rota
4450     cyclical tinyint(1) NOT NULL default 0, -- Should items on this rota keep cycling?
4451     active tinyint(1) NOT NULL default 0,   -- Is this rota currently active?
4452     PRIMARY KEY (`rota_id`)
4453 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4454
4455 --
4456 -- Table structure for table `stockrotationstages`
4457 --
4458
4459 DROP TABLE IF EXISTS stockrotationstages;
4460 CREATE TABLE stockrotationstages (
4461     stage_id int(11) auto_increment,     -- Unique stage ID
4462     position int(11) NOT NULL,           -- The position of this stage within its rota
4463     rota_id int(11) NOT NULL,            -- The rota this stage belongs to
4464     branchcode_id varchar(10) NOT NULL,  -- Branch this stage relates to
4465     duration int(11) NOT NULL default 4, -- The number of days items shoud occupy this stage
4466     PRIMARY KEY (`stage_id`),
4467     CONSTRAINT `stockrotationstages_rifk`
4468       FOREIGN KEY (`rota_id`)
4469       REFERENCES `stockrotationrotas` (`rota_id`)
4470       ON UPDATE CASCADE ON DELETE CASCADE,
4471     CONSTRAINT `stockrotationstages_bifk`
4472       FOREIGN KEY (`branchcode_id`)
4473       REFERENCES `branches` (`branchcode`)
4474       ON UPDATE CASCADE ON DELETE CASCADE
4475 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4476
4477 --
4478 -- Table structure for table `stockrotationitems`
4479 --
4480
4481 DROP TABLE IF EXISTS stockrotationitems;
4482 CREATE TABLE stockrotationitems (
4483     itemnumber_id int(11) NOT NULL,         -- Itemnumber to link to a stage & rota
4484     stage_id int(11) NOT NULL,              -- stage ID to link the item to
4485     indemand tinyint(1) NOT NULL default 0, -- Should this item be skipped for rotation?
4486     fresh tinyint(1) NOT NULL default 0,    -- Flag showing item is only just added to rota
4487     PRIMARY KEY (itemnumber_id),
4488     CONSTRAINT `stockrotationitems_iifk`
4489       FOREIGN KEY (`itemnumber_id`)
4490       REFERENCES `items` (`itemnumber`)
4491       ON UPDATE CASCADE ON DELETE CASCADE,
4492     CONSTRAINT `stockrotationitems_sifk`
4493       FOREIGN KEY (`stage_id`)
4494       REFERENCES `stockrotationstages` (`stage_id`)
4495       ON UPDATE CASCADE ON DELETE CASCADE
4496 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4497
4498 --
4499 -- Table structure for table `keyboardshortcuts`
4500 --
4501
4502 DROP TABLE IF EXISTS `keyboard_shortcuts`;
4503 CREATE TABLE keyboard_shortcuts (
4504 shortcut_name varchar(80) NOT NULL,
4505 shortcut_keys varchar(80) NOT NULL,
4506 PRIMARY KEY (shortcut_name)
4507 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4508
4509 --
4510 -- Table structure for table itemtypes_branches
4511 --
4512
4513 DROP TABLE IF EXISTS itemtypes_branches;
4514 CREATE TABLE itemtypes_branches( -- association table between authorised_values and branches
4515     itemtype VARCHAR(10) NOT NULL,
4516     branchcode VARCHAR(10) NOT NULL,
4517     FOREIGN KEY (itemtype) REFERENCES itemtypes(itemtype) ON DELETE CASCADE,
4518     FOREIGN KEY (branchcode) REFERENCES branches(branchcode) ON DELETE CASCADE
4519 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4520
4521 --
4522 -- Table structure for table `return_claims`
4523 --
4524
4525 DROP TABLE IF EXISTS `return_claims`;
4526 CREATE TABLE return_claims (
4527     id int(11) auto_increment,                             -- Unique ID of the return claim
4528     itemnumber int(11) NOT NULL,                           -- ID of the item
4529     issue_id int(11) NULL DEFAULT NULL,                    -- ID of the checkout that triggered the claim
4530     borrowernumber int(11) NOT NULL,                       -- ID of the patron
4531     notes MEDIUMTEXT DEFAULT NULL,                         -- Notes about the claim
4532     created_on TIMESTAMP NULL,                             -- Time and date the claim was created
4533     created_by int(11) NULL DEFAULT NULL,                  -- ID of the staff member that registered the claim
4534     updated_on TIMESTAMP NULL ON UPDATE CURRENT_TIMESTAMP, -- Time and date of the latest change on the claim (notes)
4535     updated_by int(11) NULL DEFAULT NULL,                  -- ID of the staff member that updated the claim
4536     resolution  varchar(80) NULL DEFAULT NULL,             -- Resolution code (RETURN_CLAIM_RESOLUTION AVs)
4537     resolved_on TIMESTAMP NULL DEFAULT NULL,               -- Time and date the claim was resolved
4538     resolved_by int(11) NULL DEFAULT NULL,                 -- ID of the staff member that resolved the claim
4539     PRIMARY KEY (`id`),
4540     KEY `itemnumber` (`itemnumber`),
4541     CONSTRAINT UNIQUE `issue_id` ( issue_id ),
4542     CONSTRAINT `issue_id` FOREIGN KEY (`issue_id`) REFERENCES `issues` (`issue_id`) ON DELETE SET NULL ON UPDATE CASCADE,
4543     CONSTRAINT `rc_items_ibfk` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
4544     CONSTRAINT `rc_borrowers_ibfk` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
4545     CONSTRAINT `rc_created_by_ibfk` FOREIGN KEY (`created_by`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE,
4546     CONSTRAINT `rc_updated_by_ibfk` FOREIGN KEY (`updated_by`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE,
4547     CONSTRAINT `rc_resolved_by_ibfk` FOREIGN KEY (`resolved_by`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE
4548 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4549
4550 --
4551 -- Table structure for table `problem_reports`
4552 --
4553
4554 DROP TABLE IF EXISTS `problem_reports`;
4555 CREATE TABLE `problem_reports` (
4556     `reportid` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
4557     `title` varchar(40) NOT NULL default '', -- report subject line
4558     `content` varchar(255) NOT NULL default '', -- report message content
4559     `borrowernumber` int(11) NOT NULL default 0, -- the user who created the problem report
4560     `branchcode` varchar(10) NOT NULL default '', -- borrower's branch
4561     `username` varchar(75) default NULL, -- OPAC username
4562     `problempage` TEXT default NULL, -- page the user triggered the problem report form from
4563     `recipient` enum('admin','library') NOT NULL default 'library', -- the 'to-address' of the problem report
4564     `created_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, -- timestamp of report submission
4565     `status` varchar(6) NOT NULL default 'New', -- status of the report. New, Viewed, Closed
4566     PRIMARY KEY (`reportid`),
4567     CONSTRAINT `problem_reports_ibfk1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
4568     CONSTRAINT `problem_reports_ibfk2` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE
4569 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4570
4571 --
4572 -- Table structure for table advanced_editor_macros
4573 --
4574
4575 DROP TABLE IF EXISTS advanced_editor_macros;
4576 CREATE TABLE advanced_editor_macros (
4577     id INT(11) NOT NULL AUTO_INCREMENT,     -- Unique ID of the macro
4578     name varchar(80) NOT NULL,              -- Name of the macro
4579     macro longtext NULL,                    -- The macro code itself
4580     borrowernumber INT(11) default NULL,    -- ID of the borrower who created this macro
4581     shared TINYINT(1) default 0,            -- Bit to define if shared or private macro
4582     PRIMARY KEY (id),
4583     CONSTRAINT borrower_macro_fk FOREIGN KEY ( borrowernumber ) REFERENCES borrowers ( borrowernumber ) ON UPDATE CASCADE ON DELETE CASCADE
4584 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
4585
4586 /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
4587 /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
4588 /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
4589 /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
4590 /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
4591 /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
4592 /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
4593 /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;