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