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