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