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