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