Bug 7567 - Added branchcode to opac_news
[koha.git] / installer / data / mysql / kohastructure.sql
1 -- MySQL dump 10.9
2 --
3 -- Host: localhost    Database: koha30test
4 -- ------------------------------------------------------
5 -- Server version       4.1.22
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 /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
11 /*!40101 SET NAMES utf8 */;
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 `auth_header`
20 --
21
22 DROP TABLE IF EXISTS `auth_header`;
23 CREATE TABLE `auth_header` (
24   `authid` bigint(20) unsigned NOT NULL auto_increment,
25   `authtypecode` varchar(10) NOT NULL default '',
26   `datecreated` date default NULL,
27   `datemodified` date default NULL,
28   `origincode` varchar(20) default NULL,
29   `authtrees` mediumtext,
30   `marc` blob,
31   `linkid` bigint(20) default NULL,
32   `marcxml` longtext NOT NULL,
33   PRIMARY KEY  (`authid`),
34   KEY `origincode` (`origincode`)
35 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
36
37 --
38 -- Table structure for table `auth_subfield_structure`
39 --
40
41 DROP TABLE IF EXISTS `auth_subfield_structure`;
42 CREATE TABLE `auth_subfield_structure` (
43   `authtypecode` varchar(10) NOT NULL default '',
44   `tagfield` varchar(3) NOT NULL default '',
45   `tagsubfield` varchar(1) NOT NULL default '',
46   `liblibrarian` varchar(255) NOT NULL default '',
47   `libopac` varchar(255) NOT NULL default '',
48   `repeatable` tinyint(4) NOT NULL default 0,
49   `mandatory` tinyint(4) NOT NULL default 0,
50   `tab` tinyint(1) default NULL,
51   `authorised_value` varchar(10) default NULL,
52   `value_builder` varchar(80) default NULL,
53   `seealso` varchar(255) default NULL,
54   `isurl` tinyint(1) default NULL,
55   `hidden` tinyint(3) NOT NULL default 0,
56   `linkid` tinyint(1) NOT NULL default 0,
57   `kohafield` varchar(45) NULL default '',
58   `frameworkcode` varchar(10) NOT NULL default '',
59   `defaultvalue` TEXT DEFAULT '',
60   PRIMARY KEY  (`authtypecode`,`tagfield`,`tagsubfield`),
61   KEY `tab` (`authtypecode`,`tab`)
62 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
63
64 --
65 -- Table structure for table `auth_tag_structure`
66 --
67
68 DROP TABLE IF EXISTS `auth_tag_structure`;
69 CREATE TABLE `auth_tag_structure` (
70   `authtypecode` varchar(10) NOT NULL default '',
71   `tagfield` varchar(3) NOT NULL default '',
72   `liblibrarian` varchar(255) NOT NULL default '',
73   `libopac` varchar(255) NOT NULL default '',
74   `repeatable` tinyint(4) NOT NULL default 0,
75   `mandatory` tinyint(4) NOT NULL default 0,
76   `authorised_value` varchar(10) default NULL,
77   PRIMARY KEY  (`authtypecode`,`tagfield`),
78   CONSTRAINT `auth_tag_structure_ibfk_1` FOREIGN KEY (`authtypecode`) REFERENCES `auth_types` (`authtypecode`) ON DELETE CASCADE ON UPDATE CASCADE
79 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
80
81 --
82 -- Table structure for table `auth_types`
83 --
84
85 DROP TABLE IF EXISTS `auth_types`;
86 CREATE TABLE `auth_types` (
87   `authtypecode` varchar(10) NOT NULL default '',
88   `authtypetext` varchar(255) NOT NULL default '',
89   `auth_tag_to_report` varchar(3) NOT NULL default '',
90   `summary` mediumtext NOT NULL,
91   PRIMARY KEY  (`authtypecode`)
92 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
93
94 --
95 -- Table structure for table `authorised_values`
96 --
97
98 DROP TABLE IF EXISTS `authorised_values`;
99 CREATE TABLE `authorised_values` ( -- stores values for authorized values categories and values
100   `id` int(11) NOT NULL auto_increment, -- unique key, used to identify the authorized value
101   `category` varchar(16) NOT NULL default '', -- key used to identify the authorized value category
102   `authorised_value` varchar(80) NOT NULL default '', -- code use to identify the authorized value
103   `lib` varchar(200) default NULL, -- authorized value description as printed in the staff client
104   `lib_opac` varchar(200) default NULL, -- authorized value description as printed in the OPAC
105   `imageurl` varchar(200) default NULL, -- authorized value URL
106   PRIMARY KEY  (`id`),
107   KEY `name` (`category`),
108   KEY `lib` (`lib`),
109   KEY `auth_value_idx` (`authorised_value`)
110 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
111
112 --
113 -- Table structure for table `biblio`
114 --
115
116 DROP TABLE IF EXISTS `biblio`;
117 CREATE TABLE `biblio` ( -- table that stores bibliographic information
118   `biblionumber` int(11) NOT NULL auto_increment, -- unique identifier assigned to each bibliographic record
119   `frameworkcode` varchar(4) NOT NULL default '', -- foriegn key from the biblio_framework table to identify which framework was used in cataloging this record
120   `author` mediumtext, -- statement of responsibility from MARC record (100$a in MARC21)
121   `title` mediumtext, -- title (without the subtitle) from the MARC record (245$a in MARC21)
122   `unititle` mediumtext, -- uniform title (without the subtitle) from the MARC record (240$a in MARC21)
123   `notes` mediumtext, -- values from the general notes field in the MARC record (500$a in MARC21) split by bar (|)
124   `serial` tinyint(1) default NULL, -- Boolean indicating whether biblio is for a serial
125   `seriestitle` mediumtext,
126   `copyrightdate` smallint(6) default NULL, -- publication or copyright date from the MARC record
127   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this record was last touched
128   `datecreated` DATE NOT NULL, -- the date this record was added to Koha
129   `abstract` mediumtext, -- summary from the MARC record (520$a in MARC21)
130   PRIMARY KEY  (`biblionumber`),
131   KEY `blbnoidx` (`biblionumber`)
132 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
133
134 --
135 -- Table structure for table `biblio_framework`
136 --
137
138 DROP TABLE IF EXISTS `biblio_framework`;
139 CREATE TABLE `biblio_framework` ( -- information about MARC frameworks
140   `frameworkcode` varchar(4) NOT NULL default '', -- the unique code assigned to the framework
141   `frameworktext` varchar(255) NOT NULL default '', -- the description/name given to the framework
142   PRIMARY KEY  (`frameworkcode`)
143 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
144
145 --
146 -- Table structure for table `biblioitems`
147 --
148
149 DROP TABLE IF EXISTS `biblioitems`;
150 CREATE TABLE `biblioitems` ( -- information related to bibliographic records in Koha
151   `biblioitemnumber` int(11) NOT NULL auto_increment, -- primary key, unique identifier assigned by Koha
152   `biblionumber` int(11) NOT NULL default 0, -- foreign key linking this table to the biblio table
153   `volume` mediumtext,
154   `number` mediumtext,
155   `itemtype` varchar(10) default NULL, -- biblio level item type (MARC21 942$c)
156   `isbn` varchar(30) default NULL, -- ISBN (MARC21 020$a)
157   `issn` varchar(9) default NULL, -- ISSN (MARC21 022$a)
158   `ean` varchar(13) default NULL,
159   `publicationyear` text,
160   `publishercode` varchar(255) default NULL, -- publisher (MARC21 260$b)
161   `volumedate` date default NULL,
162   `volumedesc` text, -- volume information (MARC21 362$a)
163   `collectiontitle` mediumtext default NULL,
164   `collectionissn` text default NULL,
165   `collectionvolume` mediumtext default NULL,
166   `editionstatement` text default NULL,
167   `editionresponsibility` text default NULL,
168   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
169   `illus` varchar(255) default NULL, -- illustrations (MARC21 300$b)
170   `pages` varchar(255) default NULL, -- number of pages (MARC21 300$c)
171   `notes` mediumtext,
172   `size` varchar(255) default NULL, -- material size (MARC21 300$c)
173   `place` varchar(255) default NULL, -- publication place (MARC21 260$a)
174   `lccn` varchar(25) default NULL, -- library of congress control number (MARC21 010$a)
175   `marc` longblob, -- full bibliographic MARC record
176   `url` text default NULL, -- url (MARC21 856$u)
177   `cn_source` varchar(10) default NULL, -- classification source (MARC21 942$2)
178   `cn_class` varchar(30) default NULL,
179   `cn_item` varchar(10) default NULL,
180   `cn_suffix` varchar(10) default NULL,
181   `cn_sort` varchar(30) default NULL, -- normalized version of the call number used for sorting
182   `agerestriction` varchar(255) default NULL, -- target audience/age restriction from the bib record (MARC21 521$a)
183   `totalissues` int(10),
184   `marcxml` longtext NOT NULL, -- full bibliographic MARC record in MARCXML
185   PRIMARY KEY  (`biblioitemnumber`),
186   KEY `bibinoidx` (`biblioitemnumber`),
187   KEY `bibnoidx` (`biblionumber`),
188   KEY `itemtype_idx` (`itemtype`),
189   KEY `isbn` (`isbn`),
190   KEY `issn` (`issn`),
191   KEY `publishercode` (`publishercode`),
192   CONSTRAINT `biblioitems_ibfk_1` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE
193 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
194
195 --
196 -- Table structure for table `borrowers`
197 --
198
199 DROP TABLE IF EXISTS `borrowers`;
200 CREATE TABLE `borrowers` ( -- this table includes information about your patrons/borrowers/members
201   `borrowernumber` int(11) NOT NULL auto_increment, -- primary key, Koha assigned ID number for patrons/borrowers
202   `cardnumber` varchar(16) default NULL, -- unique key, library assigned ID number for patrons/borrowers
203   `surname` mediumtext NOT NULL, -- patron/borrower's last name (surname)
204   `firstname` text, -- patron/borrower's first name
205   `title` mediumtext, -- patron/borrower's title, for example: Mr. or Mrs.
206   `othernames` mediumtext, -- any other names associated with the patron/borrower
207   `initials` text, -- initials for your patron/borrower
208   `streetnumber` varchar(10) default NULL, -- the house number for your patron/borrower's primary address
209   `streettype` varchar(50) default NULL, -- the street type (Rd., Blvd, etc) for your patron/borrower's primary address
210   `address` mediumtext NOT NULL, -- the first address line for your patron/borrower's primary address
211   `address2` text, -- the second address line for your patron/borrower's primary address
212   `city` mediumtext NOT NULL, -- the city or town for your patron/borrower's primary address
213   `state` text default NULL, -- the state or province for your patron/borrower's primary address
214   `zipcode` varchar(25) default NULL, -- the zip or postal code for your patron/borrower's primary address
215   `country` text, -- the country for your patron/borrower's primary address
216   `email` mediumtext, -- the primary email address for your patron/borrower's primary address
217   `phone` text, -- the primary phone number for your patron/borrower's primary address
218   `mobile` varchar(50) default NULL, -- the other phone number for your patron/borrower's primary address
219   `fax` mediumtext, -- the fax number for your patron/borrower's primary address
220   `emailpro` text, -- the secondary email addres for your patron/borrower's primary address
221   `phonepro` text, -- the secondary phone number for your patron/borrower's primary address
222   `B_streetnumber` varchar(10) default NULL, -- the house number for your patron/borrower's alternate address
223   `B_streettype` varchar(50) default NULL, -- the street type (Rd., Blvd, etc) for your patron/borrower's alternate address
224   `B_address` varchar(100) default NULL, -- the first address line for your patron/borrower's alternate address
225   `B_address2` text default NULL, -- the second address line for your patron/borrower's alternate address
226   `B_city` mediumtext, -- the city or town for your patron/borrower's alternate address
227   `B_state` text default NULL, -- the state for your patron/borrower's alternate address
228   `B_zipcode` varchar(25) default NULL, -- the zip or postal code for your patron/borrower's alternate address
229   `B_country` text, -- the country for your patron/borrower's alternate address
230   `B_email` text, -- the patron/borrower's alternate email address
231   `B_phone` mediumtext, -- the patron/borrower's alternate phone number
232   `dateofbirth` date default NULL, -- the patron/borrower's date of birth (YYYY-MM-DD)
233   `branchcode` varchar(10) NOT NULL default '', -- foreign key from the branches table, includes the code of the patron/borrower's home branch
234   `categorycode` varchar(10) NOT NULL default '', -- foreign key from the categories table, includes the code of the patron category
235   `dateenrolled` date default NULL, -- date the patron was added to Koha (YYYY-MM-DD)
236   `dateexpiry` date default NULL, -- date the patron/borrower's card is set to expire (YYYY-MM-DD)
237   `gonenoaddress` tinyint(1) default NULL, -- set to 1 for yes and 0 for no, flag to note that library marked this patron/borrower as having an unconfirmed address
238   `lost` tinyint(1) default NULL, -- set to 1 for yes and 0 for no, flag to note that library marked this patron/borrower as having lost their card
239   `debarred` date default NULL, -- until this date the patron can only check-in (no loans, no holds, etc.), is a fine based on days instead of money (YYY-MM-DD)
240   `debarredcomment` VARCHAR(255) DEFAULT NULL, -- comment on the stop of the patron
241   `contactname` mediumtext, -- used for children and profesionals to include surname or last name of guarentor or organization name
242   `contactfirstname` text, -- used for children to include first name of guarentor
243   `contacttitle` text, -- used for children to include title (Mr., Mrs., etc) of guarentor
244   `guarantorid` int(11) default NULL, -- borrowernumber used for children or professionals to link them to guarentors or organizations
245   `borrowernotes` mediumtext, -- a note on the patron/borroewr's account that is only visible in the staff client
246   `relationship` varchar(100) default NULL, -- used for children to include the relationship to their guarentor
247   `ethnicity` varchar(50) default NULL, -- unused in Koha
248   `ethnotes` varchar(255) default NULL, -- unused in Koha
249   `sex` varchar(1) default NULL, -- patron/borrower's gender
250   `password` varchar(60) default NULL, -- patron/borrower's encrypted password
251   `flags` int(11) default NULL, -- will include a number associated with the staff member's permissions
252   `userid` varchar(75) default NULL, -- patron/borrower's opac and/or staff client log in
253   `opacnote` mediumtext, -- a note on the patron/borrower's account that is visible in the OPAC and staff client
254   `contactnote` varchar(255) default NULL, -- a note related to the patron/borrower's alternate address
255   `sort1` varchar(80) default NULL, -- a field that can be used for any information unique to the library
256   `sort2` varchar(80) default NULL, -- a field that can be used for any information unique to the library
257   `altcontactfirstname` varchar(255) default NULL, -- first name of alternate contact for the patron/borrower
258   `altcontactsurname` varchar(255) default NULL, -- surname or last name of the alternate contact for the patron/borrower
259   `altcontactaddress1` varchar(255) default NULL, -- the first address line for the alternate contact for the patron/borrower
260   `altcontactaddress2` varchar(255) default NULL, -- the second address line for the alternate contact for the patron/borrower
261   `altcontactaddress3` varchar(255) default NULL, -- the city for the alternate contact for the patron/borrower
262   `altcontactstate` text default NULL, -- the state for the alternate contact for the patron/borrower
263   `altcontactzipcode` varchar(50) default NULL, -- the zipcode for the alternate contact for the patron/borrower
264   `altcontactcountry` text default NULL, -- the country for the alternate contact for the patron/borrower
265   `altcontactphone` varchar(50) default NULL, -- the phone number for the alternate contact for the patron/borrower
266   `smsalertnumber` varchar(50) default NULL, -- the mobile phone number where the patron/borrower would like to receive notices (if SNS turned on)
267   `privacy` integer(11) DEFAULT '1' NOT NULL, -- patron/borrower's privacy settings related to their reading history
268   UNIQUE KEY `cardnumber` (`cardnumber`),
269   PRIMARY KEY `borrowernumber` (`borrowernumber`),
270   KEY `categorycode` (`categorycode`),
271   KEY `branchcode` (`branchcode`),
272   KEY `userid` (`userid`),
273   KEY `guarantorid` (`guarantorid`),
274   KEY `surname_idx` (`surname`(255)),
275   KEY `firstname_idx` (`firstname`(255)),
276   KEY `othernames_idx` (`othernames`(255)),
277   CONSTRAINT `borrowers_ibfk_1` FOREIGN KEY (`categorycode`) REFERENCES `categories` (`categorycode`),
278   CONSTRAINT `borrowers_ibfk_2` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`)
279 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
280
281 --
282 -- Table structure for table `borrower_attribute_types`
283 --
284
285 DROP TABLE IF EXISTS `borrower_attribute_types`;
286 CREATE TABLE `borrower_attribute_types` ( -- definitions for custom patron fields known as extended patron attributes
287   `code` varchar(10) NOT NULL, -- unique key used to identify each custom field
288   `description` varchar(255) NOT NULL, -- description for each custom field
289   `repeatable` tinyint(1) NOT NULL default 0, -- defines whether one patron/borrower can have multiple values for this custom field  (1 for yes, 0 for no)
290   `unique_id` tinyint(1) NOT NULL default 0, -- defines if this value needs to be unique (1 for yes, 0 for no)
291   `opac_display` tinyint(1) NOT NULL default 0, -- defines if this field is visible to patrons on their account in the OPAC (1 for yes, 0 for no)
292   `password_allowed` tinyint(1) NOT NULL default 0, -- defines if it is possible to associate a password with this custom field (1 for yes, 0 for no)
293   `staff_searchable` tinyint(1) NOT NULL default 0, -- defines if this field is searchable via the patron search in the staff client (1 for yes, 0 for no)
294   `authorised_value_category` varchar(10) default NULL, -- foreign key from authorised_values that links this custom field to an authorized value category
295   `display_checkout` tinyint(1) NOT NULL default 0,-- defines if this field displays in checkout screens
296   `category_code` VARCHAR(10) NULL DEFAULT NULL,-- defines a category for an attribute_type
297   `class` VARCHAR(255) NOT NULL DEFAULT '',-- defines a class for an attribute_type
298   PRIMARY KEY  (`code`),
299   KEY `auth_val_cat_idx` (`authorised_value_category`)
300 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
301
302 --
303 -- Table structure for table `borrower_attributes`
304 --
305
306 DROP TABLE IF EXISTS `borrower_attributes`;
307 CREATE TABLE `borrower_attributes` ( -- values of custom patron fields known as extended patron attributes linked to patrons/borrowers
308   `borrowernumber` int(11) NOT NULL, -- foreign key from the borrowers table, defines which patron/borrower has this attribute
309   `code` varchar(10) NOT NULL, -- foreign key from the borrower_attribute_types table, defines which custom field this value was entered for
310   `attribute` varchar(255) default NULL, -- custom patron field value
311   `password` varchar(64) default NULL, -- password associated with this field
312   KEY `borrowernumber` (`borrowernumber`),
313   KEY `code_attribute` (`code`, `attribute`),
314   CONSTRAINT `borrower_attributes_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`)
315     ON DELETE CASCADE ON UPDATE CASCADE,
316   CONSTRAINT `borrower_attributes_ibfk_2` FOREIGN KEY (`code`) REFERENCES `borrower_attribute_types` (`code`)
317     ON DELETE CASCADE ON UPDATE CASCADE
318 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
319
320 --
321 -- Table structure for table `borrower_debarments`
322 --
323
324 DROP TABLE IF EXISTS `borrower_debarments`;
325 CREATE TABLE borrower_debarments (
326   borrower_debarment_id int(11) NOT NULL AUTO_INCREMENT,
327   borrowernumber int(11) NOT NULL,
328   expiration date DEFAULT NULL,
329   `type` enum('SUSPENSION','OVERDUES','MANUAL') NOT NULL DEFAULT 'MANUAL',
330   `comment` text,
331   manager_id int(11) DEFAULT NULL,
332   created timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
333   updated timestamp NULL DEFAULT NULL,
334   PRIMARY KEY (borrower_debarment_id),
335   KEY borrowernumber (borrowernumber),
336   CONSTRAINT `borrower_debarments_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`)
337     ON DELETE CASCADE ON UPDATE CASCADE
338 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8;
339
340
341 --
342 -- Table structure for table `branch_item_rules`
343 --
344
345 DROP TABLE IF EXISTS `branch_item_rules`;
346 CREATE TABLE `branch_item_rules` ( -- information entered in the circulation and fine rules under 'Holds policy by item type'
347   `branchcode` varchar(10) NOT NULL, -- the branch this rule is for (branches.branchcode)
348   `itemtype` varchar(10) NOT NULL, -- the item type this rule applies to (items.itype)
349   `holdallowed` tinyint(1) default NULL, -- the number of holds allowed
350   `returnbranch` varchar(15) default NULL, -- the branch the item returns to (homebranch, holdingbranch, noreturn)
351   PRIMARY KEY  (`itemtype`,`branchcode`),
352   KEY `branch_item_rules_ibfk_2` (`branchcode`),
353   CONSTRAINT `branch_item_rules_ibfk_1` FOREIGN KEY (`itemtype`) REFERENCES `itemtypes` (`itemtype`)
354     ON DELETE CASCADE ON UPDATE CASCADE,
355   CONSTRAINT `branch_item_rules_ibfk_2` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`)
356     ON DELETE CASCADE ON UPDATE CASCADE
357 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
358
359 --
360 -- Table structure for table `branchcategories`
361 --
362
363 DROP TABLE IF EXISTS `branchcategories`;
364 CREATE TABLE `branchcategories` ( -- information related to library/branch groups
365   `categorycode` varchar(10) NOT NULL default '', -- unique identifier for the library/branch group
366   `categoryname` varchar(32), -- name of the library/branch group
367   `codedescription` mediumtext, -- longer description of the library/branch group
368   `categorytype` varchar(16), -- says whether this is a search group or a properties group
369   `show_in_pulldown` tinyint(1) NOT NULL DEFAULT '0', -- says this group should be in the opac libararies pulldown if it is enabled
370   PRIMARY KEY  (`categorycode`),
371   KEY `show_in_pulldown` (`show_in_pulldown`)
372 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
373
374 --
375 -- Table structure for table `branches`
376 --
377
378 DROP TABLE IF EXISTS `branches`;
379 CREATE TABLE `branches` ( -- information about your libraries or branches are stored here
380   `branchcode` varchar(10) NOT NULL default '', -- a unique key assigned to each branch
381   `branchname` mediumtext NOT NULL, -- the name of your library or branch
382   `branchaddress1` mediumtext, -- the first address line of for your library or branch
383   `branchaddress2` mediumtext, -- the second address line of for your library or branch
384   `branchaddress3` mediumtext, -- the third address line of for your library or branch
385   `branchzip` varchar(25) default NULL, -- the zip or postal code for your library or branch
386   `branchcity` mediumtext, -- the city or province for your library or branch
387   `branchstate` mediumtext, -- the state for your library or branch
388   `branchcountry` text, -- the county for your library or branch
389   `branchphone` mediumtext, -- the primary phone for your library or branch
390   `branchfax` mediumtext, -- the fax number for your library or branch
391   `branchemail` mediumtext, -- the primary email address for your library or branch
392   `branchurl` mediumtext, -- the URL for your library or branch's website
393   `issuing` tinyint(4) default NULL, -- unused in Koha
394   `branchip` varchar(15) default NULL, -- the IP address for your library or branch
395   `branchprinter` varchar(100) default NULL, -- unused in Koha
396   `branchnotes` mediumtext, -- notes related to your library or branch
397   opac_info text, -- HTML that displays in OPAC
398   PRIMARY KEY (`branchcode`)
399 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
400
401 --
402 -- Table structure for table `branchrelations`
403 --
404
405 DROP TABLE IF EXISTS `branchrelations`;
406 CREATE TABLE `branchrelations` ( -- this table links libraries/branches to groups
407   `branchcode` varchar(10) NOT NULL default '', -- foreign key from the branches table to identify the branch
408   `categorycode` varchar(10) NOT NULL default '', -- foreign key from the branchcategories table to identify the group
409   PRIMARY KEY  (`branchcode`,`categorycode`),
410   KEY `branchcode` (`branchcode`),
411   KEY `categorycode` (`categorycode`),
412   CONSTRAINT `branchrelations_ibfk_1` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE,
413   CONSTRAINT `branchrelations_ibfk_2` FOREIGN KEY (`categorycode`) REFERENCES `branchcategories` (`categorycode`) ON DELETE CASCADE ON UPDATE CASCADE
414 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
415
416 --
417 -- Table structure for table `branchtransfers`
418 --
419
420 DROP TABLE IF EXISTS `branchtransfers`;
421 CREATE TABLE `branchtransfers` ( -- information for items that are in transit between branches
422   `itemnumber` int(11) NOT NULL default 0, -- the itemnumber that it is in transit (items.itemnumber)
423   `datesent` datetime default NULL, -- the date the transfer was initialized
424   `frombranch` varchar(10) NOT NULL default '', -- the branch the transfer is coming from
425   `datearrived` datetime default NULL, -- the date the transfer arrived at its destination
426   `tobranch` varchar(10) NOT NULL default '', -- the branch the transfer was going to
427   `comments` mediumtext, -- any comments related to the transfer
428   KEY `frombranch` (`frombranch`),
429   KEY `tobranch` (`tobranch`),
430   KEY `itemnumber` (`itemnumber`),
431   CONSTRAINT `branchtransfers_ibfk_1` FOREIGN KEY (`frombranch`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE,
432   CONSTRAINT `branchtransfers_ibfk_2` FOREIGN KEY (`tobranch`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE,
433   CONSTRAINT `branchtransfers_ibfk_3` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE
434 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
435
436
437 --
438 -- Table structure for table `browser`
439 --
440 DROP TABLE IF EXISTS `browser`;
441 CREATE TABLE `browser` (
442   `level` int(11) NOT NULL,
443   `classification` varchar(20) NOT NULL,
444   `description` varchar(255) NOT NULL,
445   `number` bigint(20) NOT NULL,
446   `endnode` tinyint(4) NOT NULL
447 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
448
449 --
450 -- Table structure for table `categories`
451 --
452
453 DROP TABLE IF EXISTS `categories`;
454 CREATE TABLE `categories` ( -- this table shows information related to Koha patron categories
455   `categorycode` varchar(10) NOT NULL default '', -- unique primary key used to idenfity the patron category
456   `description` mediumtext, -- description of the patron category
457   `enrolmentperiod` smallint(6) default NULL, -- number of months the patron is enrolled for (will be NULL if enrolmentperioddate is set)
458   `enrolmentperioddate` DATE NULL DEFAULT NULL, -- date the patron is enrolled until (will be NULL if enrolmentperiod is set)
459   `upperagelimit` smallint(6) default NULL, -- age limit for the patron
460   `dateofbirthrequired` tinyint(1) default NULL,
461   `finetype` varchar(30) default NULL, -- unused in Koha
462   `bulk` tinyint(1) default NULL,
463   `enrolmentfee` decimal(28,6) default NULL, -- enrollment fee for the patron
464   `overduenoticerequired` tinyint(1) default NULL, -- are overdue notices sent to this patron category (1 for yes, 0 for no)
465   `issuelimit` smallint(6) default NULL, -- unused in Koha
466   `reservefee` decimal(28,6) default NULL, -- cost to place holds
467   `hidelostitems` tinyint(1) NOT NULL default '0', -- are lost items shown to this category (1 for yes, 0 for no)
468   `category_type` varchar(1) NOT NULL default 'A', -- type of Koha patron (Adult, Child, Professional, Organizational, Statistical, Staff)
469   PRIMARY KEY  (`categorycode`),
470   UNIQUE KEY `categorycode` (`categorycode`)
471 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
472
473 --
474 -- Table: collections
475 --
476 DROP TABLE IF EXISTS collections;
477 CREATE TABLE collections (
478   colId integer(11) NOT NULL auto_increment,
479   colTitle varchar(100) NOT NULL DEFAULT '',
480   colDesc text NOT NULL,
481   colBranchcode varchar(4) DEFAULT NULL comment 'branchcode for branch where item should be held.',
482   PRIMARY KEY (colId)
483 ) ENGINE=InnoDB DEFAULT CHARACTER SET utf8;
484
485 --
486 -- Table: collections_tracking
487 --
488 DROP TABLE IF EXISTS collections_tracking;
489 CREATE TABLE collections_tracking (
490   collections_tracking_id integer(11) NOT NULL auto_increment,
491   colId integer(11) NOT NULL DEFAULT 0 comment 'collections.colId',
492   itemnumber integer(11) NOT NULL DEFAULT 0 comment 'items.itemnumber',
493   PRIMARY KEY (collections_tracking_id)
494 ) ENGINE=InnoDB DEFAULT CHARACTER SET utf8;
495
496 --
497 -- Table structure for table `courses`
498 --
499
500 -- The courses table stores the courses created for the
501 -- course reserves feature.
502
503 DROP TABLE IF EXISTS courses;
504 CREATE TABLE `courses` (
505   `course_id` int(11) NOT NULL AUTO_INCREMENT,
506   `department` varchar(80) DEFAULT NULL, -- Stores the authorised value DEPT
507   `course_number` varchar(255) DEFAULT NULL, -- An arbitrary field meant to store the "course number" assigned to a course
508   `section` varchar(255) DEFAULT NULL, -- Also arbitrary, but for the 'section' of a course.
509   `course_name` varchar(255) DEFAULT NULL,
510   `term` varchar(80) DEFAULT NULL, -- Stores the authorised value TERM
511   `staff_note` mediumtext,
512   `public_note` mediumtext,
513   `students_count` varchar(20) DEFAULT NULL, -- Meant to be just an estimate of how many students will be taking this course/section
514   `enabled` enum('yes','no') NOT NULL DEFAULT 'yes', -- Determines whether the course is active
515   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
516    PRIMARY KEY (`course_id`)
517 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8;
518
519 --
520 -- Table structure for table `course_instructors`
521 --
522
523 -- The course instructors table links Koha borrowers to the
524 -- courses they are teaching. Many instructors can teach many
525 -- courses. course_instructors is just a many-to-many join table.
526
527 DROP TABLE IF EXISTS course_instructors;
528 CREATE TABLE `course_instructors` (
529   `course_id` int(11) NOT NULL,
530   `borrowernumber` int(11) NOT NULL,
531   PRIMARY KEY (`course_id`,`borrowernumber`),
532   KEY `borrowernumber` (`borrowernumber`)
533 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
534
535 --
536 -- Constraints for table `course_instructors`
537 --
538 ALTER TABLE `course_instructors`
539   ADD CONSTRAINT `course_instructors_ibfk_2` FOREIGN KEY (`course_id`) REFERENCES `courses` (`course_id`),
540   ADD CONSTRAINT `course_instructors_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE;
541
542 --
543 -- Table structure for table `course_items`
544 --
545
546 -- If an item is placed on course reserve for one or more courses
547 -- it will have an entry in this table. No matter how many courses an item
548 -- is part of, it will only have one row in this table.
549
550 DROP TABLE IF EXISTS course_items;
551 CREATE TABLE `course_items` (
552   `ci_id` int(11) NOT NULL AUTO_INCREMENT,
553   `itemnumber` int(11) NOT NULL, -- items.itemnumber for the item on reserve
554   `itype` varchar(10) DEFAULT NULL, -- an optional new itemtype for the item to have while on reserve
555   `ccode` varchar(10) DEFAULT NULL, -- an optional new category code for the item to have while on reserve
556   `holdingbranch` varchar(10) DEFAULT NULL, -- an optional new holding branch for the item to have while on reserve
557   `location` varchar(80) DEFAULT NULL, -- an optional new shelving location for the item to have while on reseve
558   `enabled` enum('yes','no') NOT NULL DEFAULT 'no', -- If at least one enabled course has this item on reseve, this field will be 'yes', otherwise it will be 'no'
559   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
560    PRIMARY KEY (`ci_id`),
561    UNIQUE KEY `itemnumber` (`itemnumber`),
562    KEY `holdingbranch` (`holdingbranch`)
563 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8;
564
565 --
566 -- Constraints for table `course_items`
567 --
568 ALTER TABLE `course_items`
569   ADD CONSTRAINT `course_items_ibfk_2` FOREIGN KEY (`holdingbranch`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE,
570   ADD CONSTRAINT `course_items_ibfk_1` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE;
571
572 --
573 -- Table structure for table `course_reserves`
574 --
575
576 -- This table connects an item placed on course reserve to a course it is on reserve for.
577 -- There will be a row in this table for each course an item is on reserve for.
578
579 DROP TABLE IF EXISTS course_reserves;
580 CREATE TABLE `course_reserves` (
581   `cr_id` int(11) NOT NULL AUTO_INCREMENT,
582   `course_id` int(11) NOT NULL, -- Foreign key to the courses table
583   `ci_id` int(11) NOT NULL, -- Foreign key to the course_items table
584   `staff_note` mediumtext, -- Staff only note
585   `public_note` mediumtext, -- Public, OPAC visible note
586   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
587    PRIMARY KEY (`cr_id`),
588    UNIQUE KEY `pseudo_key` (`course_id`,`ci_id`),
589    KEY `course_id` (`course_id`)
590 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8;
591
592 --
593 -- Constraints for table `course_reserves`
594 --
595 ALTER TABLE `course_reserves`
596   ADD CONSTRAINT `course_reserves_ibfk_1` FOREIGN KEY (`course_id`) REFERENCES `courses` (`course_id`);
597
598 --
599 -- Table structure for table `branch_borrower_circ_rules`
600 --
601
602 DROP TABLE IF EXISTS `branch_borrower_circ_rules`;
603 CREATE TABLE `branch_borrower_circ_rules` ( -- includes default circulation rules for patron categories found under "Checkout limit by patron category"
604   `branchcode` VARCHAR(10) NOT NULL, -- the branch this rule applies to (branches.branchcode)
605   `categorycode` VARCHAR(10) NOT NULL, -- the patron category this rule applies to (categories.categorycode)
606   `maxissueqty` int(4) default NULL, -- the maximum number of checkouts this patron category can have at this branch
607   PRIMARY KEY (`categorycode`, `branchcode`),
608   CONSTRAINT `branch_borrower_circ_rules_ibfk_1` FOREIGN KEY (`categorycode`) REFERENCES `categories` (`categorycode`)
609     ON DELETE CASCADE ON UPDATE CASCADE,
610   CONSTRAINT `branch_borrower_circ_rules_ibfk_2` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`)
611     ON DELETE CASCADE ON UPDATE CASCADE
612 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
613
614 --
615 -- Table structure for table `default_borrower_circ_rules`
616 --
617
618 DROP TABLE IF EXISTS `default_borrower_circ_rules`;
619 CREATE TABLE `default_borrower_circ_rules` ( -- default checkout rules found under "Default checkout, hold and return policy"
620   `categorycode` VARCHAR(10) NOT NULL, -- patron category this rul
621   `maxissueqty` int(4) default NULL,
622   PRIMARY KEY (`categorycode`),
623   CONSTRAINT `borrower_borrower_circ_rules_ibfk_1` FOREIGN KEY (`categorycode`) REFERENCES `categories` (`categorycode`)
624     ON DELETE CASCADE ON UPDATE CASCADE
625 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
626
627 --
628 -- Table structure for table `default_branch_circ_rules`
629 --
630
631 DROP TABLE IF EXISTS `default_branch_circ_rules`;
632 CREATE TABLE `default_branch_circ_rules` (
633   `branchcode` VARCHAR(10) NOT NULL,
634   `maxissueqty` int(4) default NULL,
635   `holdallowed` tinyint(1) default NULL,
636   `returnbranch` varchar(15) default NULL,
637   PRIMARY KEY (`branchcode`),
638   CONSTRAINT `default_branch_circ_rules_ibfk_1` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`)
639     ON DELETE CASCADE ON UPDATE CASCADE
640 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
641
642 --
643 -- Table structure for table `default_branch_item_rules`
644 --
645 DROP TABLE IF EXISTS `default_branch_item_rules`;
646 CREATE TABLE `default_branch_item_rules` (
647   `itemtype` varchar(10) NOT NULL,
648   `holdallowed` tinyint(1) default NULL,
649   `returnbranch` varchar(15) default NULL,
650   PRIMARY KEY  (`itemtype`),
651   CONSTRAINT `default_branch_item_rules_ibfk_1` FOREIGN KEY (`itemtype`) REFERENCES `itemtypes` (`itemtype`)
652     ON DELETE CASCADE ON UPDATE CASCADE
653 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
654
655 --
656 -- Table structure for table `default_circ_rules`
657 --
658
659 DROP TABLE IF EXISTS `default_circ_rules`;
660 CREATE TABLE `default_circ_rules` (
661     `singleton` enum('singleton') NOT NULL default 'singleton',
662     `maxissueqty` int(4) default NULL,
663     `holdallowed` int(1) default NULL,
664     `returnbranch` varchar(15) default NULL,
665     PRIMARY KEY (`singleton`)
666 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
667
668 --
669 -- Table structure for table `cities`
670 --
671
672 DROP TABLE IF EXISTS `cities`;
673 CREATE TABLE `cities` ( -- authorized values for cities/states/countries to choose when adding/editing a patron/borrower
674   `cityid` int(11) NOT NULL auto_increment, -- unique identifier added by Koha
675   `city_name` varchar(100) NOT NULL default '', -- name of the city
676   `city_state` VARCHAR( 100 ) NULL DEFAULT NULL, -- name of the state/province
677   `city_country` VARCHAR( 100 ) NULL DEFAULT NULL, -- name of the country
678   `city_zipcode` varchar(20) default NULL, -- zip or postal code
679   PRIMARY KEY  (`cityid`)
680 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
681
682 --
683 -- Table structure for table `class_sort_rules`
684 --
685
686 DROP TABLE IF EXISTS `class_sort_rules`;
687 CREATE TABLE `class_sort_rules` (
688   `class_sort_rule` varchar(10) NOT NULL default '',
689   `description` mediumtext,
690   `sort_routine` varchar(30) NOT NULL default '',
691   PRIMARY KEY (`class_sort_rule`),
692   UNIQUE KEY `class_sort_rule_idx` (`class_sort_rule`)
693 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
694
695 --
696 -- Table structure for table `class_sources`
697 --
698
699 DROP TABLE IF EXISTS `class_sources`;
700 CREATE TABLE `class_sources` (
701   `cn_source` varchar(10) NOT NULL default '',
702   `description` mediumtext,
703   `used` tinyint(4) NOT NULL default 0,
704   `class_sort_rule` varchar(10) NOT NULL default '',
705   PRIMARY KEY (`cn_source`),
706   UNIQUE KEY `cn_source_idx` (`cn_source`),
707   KEY `used_idx` (`used`),
708   CONSTRAINT `class_source_ibfk_1` FOREIGN KEY (`class_sort_rule`) REFERENCES `class_sort_rules` (`class_sort_rule`)
709 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
710
711 --
712 -- Table structure for table `currency`
713 --
714
715 DROP TABLE IF EXISTS `currency`;
716 CREATE TABLE `currency` (
717   `currency` varchar(10) NOT NULL default '',
718   `symbol` varchar(5) default NULL,
719   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
720   `rate` float(15,5) default NULL,
721   `active` tinyint(1) default NULL,
722   PRIMARY KEY  (`currency`)
723 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
724
725 --
726 -- Table structure for table `deletedbiblio`
727 --
728
729 DROP TABLE IF EXISTS `deletedbiblio`;
730 CREATE TABLE `deletedbiblio` ( -- stores information about bibliographic records that have been deleted
731   `biblionumber` int(11) NOT NULL auto_increment, -- unique identifier assigned to each bibliographic record
732   `frameworkcode` varchar(4) NOT NULL default '', -- foriegn key from the biblio_framework table to identify which framework was used in cataloging this record
733   `author` mediumtext, -- statement of responsibility from MARC record (100$a in MARC21)
734   `title` mediumtext, -- title (without the subtitle) from the MARC record (245$a in MARC21)
735   `unititle` mediumtext, -- uniform title (without the subtitle) from the MARC record (240$a in MARC21)
736   `notes` mediumtext, -- values from the general notes field in the MARC record (500$a in MARC21) split by bar (|)
737   `serial` tinyint(1) default NULL, -- Boolean indicating whether biblio is for a serial
738   `seriestitle` mediumtext,
739   `copyrightdate` smallint(6) default NULL, -- publication or copyright date from the MARC record
740   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this record was last touched
741   `datecreated` DATE NOT NULL, -- the date this record was added to Koha
742   `abstract` mediumtext, -- summary from the MARC record (520$a in MARC21)
743   PRIMARY KEY  (`biblionumber`),
744   KEY `blbnoidx` (`biblionumber`)
745 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
746
747 --
748 -- Table structure for table `deletedbiblioitems`
749 --
750
751 DROP TABLE IF EXISTS `deletedbiblioitems`;
752 CREATE TABLE `deletedbiblioitems` ( -- information about bibliographic records that have been deleted
753   `biblioitemnumber` int(11) NOT NULL default 0, -- primary key, unique identifier assigned by Koha
754   `biblionumber` int(11) NOT NULL default 0, -- foreign key linking this table to the biblio table
755   `volume` mediumtext,
756   `number` mediumtext,
757   `itemtype` varchar(10) default NULL, -- biblio level item type (MARC21 942$c)
758   `isbn` varchar(30) default NULL, -- ISBN (MARC21 020$a)
759   `issn` varchar(9) default NULL, -- ISSN (MARC21 022$a)
760   `ean` varchar(13) default NULL,
761   `publicationyear` text,
762   `publishercode` varchar(255) default NULL, -- publisher (MARC21 260$b)
763   `volumedate` date default NULL,
764   `volumedesc` text, -- volume information (MARC21 362$a)
765   `collectiontitle` mediumtext default NULL,
766   `collectionissn` text default NULL,
767   `collectionvolume` mediumtext default NULL,
768   `editionstatement` text default NULL,
769   `editionresponsibility` text default NULL,
770   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
771   `illus` varchar(255) default NULL, -- illustrations (MARC21 300$b)
772   `pages` varchar(255) default NULL, -- number of pages (MARC21 300$c)
773   `notes` mediumtext,
774   `size` varchar(255) default NULL, -- material size (MARC21 300$c)
775   `place` varchar(255) default NULL, -- publication place (MARC21 260$a)
776   `lccn` varchar(25) default NULL, -- library of congress control number (MARC21 010$a)
777   `marc` longblob, -- full bibliographic MARC record
778   `url` text default NULL, -- url (MARC21 856$u)
779   `cn_source` varchar(10) default NULL, -- classification source (MARC21 942$2)
780   `cn_class` varchar(30) default NULL,
781   `cn_item` varchar(10) default NULL,
782   `cn_suffix` varchar(10) default NULL,
783   `cn_sort` varchar(30) default NULL, -- normalized version of the call number used for sorting
784   `agerestriction` varchar(255) default NULL, -- target audience/age restriction from the bib record (MARC21 521$a)
785   `totalissues` int(10),
786   `marcxml` longtext NOT NULL, -- full bibliographic MARC record in MARCXML
787   PRIMARY KEY  (`biblioitemnumber`),
788   KEY `bibinoidx` (`biblioitemnumber`),
789   KEY `bibnoidx` (`biblionumber`),
790   KEY `itemtype_idx` (`itemtype`),
791   KEY `isbn` (`isbn`),
792   KEY `publishercode` (`publishercode`)
793 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
794
795 --
796 -- Table structure for table `deletedborrowers`
797 --
798
799 DROP TABLE IF EXISTS `deletedborrowers`;
800 CREATE TABLE `deletedborrowers` ( -- stores data related to the patrons/borrowers you have deleted
801   `borrowernumber` int(11) NOT NULL default 0, -- primary key, Koha assigned ID number for patrons/borrowers
802   `cardnumber` varchar(16) default NULL, -- unique key, library assigned ID number for patrons/borrowers
803   `surname` mediumtext NOT NULL, -- patron/borrower's last name (surname)
804   `firstname` text, -- patron/borrower's first name
805   `title` mediumtext, -- patron/borrower's title, for example: Mr. or Mrs.
806   `othernames` mediumtext, -- any other names associated with the patron/borrower
807   `initials` text, -- initials for your patron/borrower
808   `streetnumber` varchar(10) default NULL, -- the house number for your patron/borrower's primary address
809   `streettype` varchar(50) default NULL, -- the street type (Rd., Blvd, etc) for your patron/borrower's primary address
810   `address` mediumtext NOT NULL, -- the first address line for your patron/borrower's primary address
811   `address2` text, -- the second address line for your patron/borrower's primary address
812   `city` mediumtext NOT NULL, -- the city or town for your patron/borrower's primary address
813   `state` text default NULL, -- the state or province for your patron/borrower's primary address
814   `zipcode` varchar(25) default NULL, -- the zip or postal code for your patron/borrower's primary address
815   `country` text, -- the country for your patron/borrower's primary address
816   `email` mediumtext, -- the primary email address for your patron/borrower's primary address
817   `phone` text, -- the primary phone number for your patron/borrower's primary address
818   `mobile` varchar(50) default NULL, -- the other phone number for your patron/borrower's primary address
819   `fax` mediumtext, -- the fax number for your patron/borrower's primary address
820   `emailpro` text, -- the secondary email addres for your patron/borrower's primary address
821   `phonepro` text, -- the secondary phone number for your patron/borrower's primary address
822   `B_streetnumber` varchar(10) default NULL, -- the house number for your patron/borrower's alternate address
823   `B_streettype` varchar(50) default NULL, -- the street type (Rd., Blvd, etc) for your patron/borrower's alternate address
824   `B_address` varchar(100) default NULL, -- the first address line for your patron/borrower's alternate address
825   `B_address2` text default NULL, -- the second address line for your patron/borrower's alternate address
826   `B_city` mediumtext, -- the city or town for your patron/borrower's alternate address
827   `B_state` text default NULL, -- the state for your patron/borrower's alternate address
828   `B_zipcode` varchar(25) default NULL, -- the zip or postal code for your patron/borrower's alternate address
829   `B_country` text, -- the country for your patron/borrower's alternate address
830   `B_email` text, -- the patron/borrower's alternate email address
831   `B_phone` mediumtext, -- the patron/borrower's alternate phone number
832   `dateofbirth` date default NULL, -- the patron/borrower's date of birth (YYYY-MM-DD)
833   `branchcode` varchar(10) NOT NULL default '', -- foreign key from the branches table, includes the code of the patron/borrower's home branch
834   `categorycode` varchar(10) NOT NULL default '', -- foreign key from the categories table, includes the code of the patron category
835   `dateenrolled` date default NULL, -- date the patron was added to Koha (YYYY-MM-DD)
836   `dateexpiry` date default NULL, -- date the patron/borrower's card is set to expire (YYYY-MM-DD)
837   `gonenoaddress` tinyint(1) default NULL, -- set to 1 for yes and 0 for no, flag to note that library marked this patron/borrower as having an unconfirmed address
838   `lost` tinyint(1) default NULL, -- set to 1 for yes and 0 for no, flag to note that library marked this patron/borrower as having lost their card
839   `debarred` date default NULL, -- until this date the patron can only check-in (no loans, no holds, etc.), is a fine based on days instead of money (YYY-MM-DD)
840   `debarredcomment` VARCHAR(255) DEFAULT NULL, -- comment on the stop of patron
841   `contactname` mediumtext, -- used for children and profesionals to include surname or last name of guarentor or organization name
842   `contactfirstname` text, -- used for children to include first name of guarentor
843   `contacttitle` text, -- used for children to include title (Mr., Mrs., etc) of guarentor
844   `guarantorid` int(11) default NULL, -- borrowernumber used for children or professionals to link them to guarentors or organizations
845   `borrowernotes` mediumtext, -- a note on the patron/borroewr's account that is only visible in the staff client
846   `relationship` varchar(100) default NULL, -- used for children to include the relationship to their guarentor
847   `ethnicity` varchar(50) default NULL, -- unused in Koha
848   `ethnotes` varchar(255) default NULL, -- unused in Koha
849   `sex` varchar(1) default NULL, -- patron/borrower's gender
850   `password` varchar(30) default NULL, -- patron/borrower's encrypted password
851   `flags` int(11) default NULL, -- will include a number associated with the staff member's permissions
852   `userid` varchar(30) default NULL, -- patron/borrower's opac and/or staff client log in
853   `opacnote` mediumtext, -- a note on the patron/borrower's account that is visible in the OPAC and staff client
854   `contactnote` varchar(255) default NULL, -- a note related to the patron/borrower's alternate address
855   `sort1` varchar(80) default NULL, -- a field that can be used for any information unique to the library
856   `sort2` varchar(80) default NULL, -- a field that can be used for any information unique to the library
857   `altcontactfirstname` varchar(255) default NULL, -- first name of alternate contact for the patron/borrower
858   `altcontactsurname` varchar(255) default NULL, -- surname or last name of the alternate contact for the patron/borrower
859   `altcontactaddress1` varchar(255) default NULL, -- the first address line for the alternate contact for the patron/borrower
860   `altcontactaddress2` varchar(255) default NULL, -- the second address line for the alternate contact for the patron/borrower
861   `altcontactaddress3` varchar(255) default NULL, -- the city for the alternate contact for the patron/borrower
862   `altcontactstate` text default NULL, -- the state for the alternate contact for the patron/borrower
863   `altcontactzipcode` varchar(50) default NULL, -- the zipcode for the alternate contact for the patron/borrower
864   `altcontactcountry` text default NULL, -- the country for the alternate contact for the patron/borrower
865   `altcontactphone` varchar(50) default NULL, -- the phone number for the alternate contact for the patron/borrower
866   `smsalertnumber` varchar(50) default NULL, -- the mobile phone number where the patron/borrower would like to receive notices (if SNS turned on)
867   `privacy` integer(11) DEFAULT '1' NOT NULL, -- patron/borrower's privacy settings related to their reading history  KEY `borrowernumber` (`borrowernumber`),
868   KEY borrowernumber (borrowernumber),
869   KEY `cardnumber` (`cardnumber`)
870 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
871
872 --
873 -- Table structure for table `deleteditems`
874 --
875
876 DROP TABLE IF EXISTS `deleteditems`;
877 CREATE TABLE `deleteditems` (
878   `itemnumber` int(11) NOT NULL default 0, -- primary key and unique identifier added by Koha
879   `biblionumber` int(11) NOT NULL default 0, -- foreign key from biblio table used to link this item to the right bib record
880   `biblioitemnumber` int(11) NOT NULL default 0, -- foreign key from the biblioitems table to link to item to additional information
881   `barcode` varchar(20) default NULL, -- item barcode (MARC21 952$p)
882   `dateaccessioned` date default NULL, -- date the item was acquired or added to Koha (MARC21 952$d)
883   `booksellerid` mediumtext default NULL, -- where the item was purchased (MARC21 952$e)
884   `homebranch` varchar(10) default NULL, -- foreign key from the branches table for the library that owns this item (MARC21 952$a)
885   `price` decimal(8,2) default NULL, -- purchase price (MARC21 952$g)
886   `replacementprice` decimal(8,2) default NULL, -- cost the library charges to replace the item if it has been marked lost (MARC21 952$v)
887   `replacementpricedate` date default NULL, -- the date the price is effective from (MARC21 952$w)
888   `datelastborrowed` date default NULL, -- the date the item was last checked out
889   `datelastseen` date default NULL, -- the date the item was last see (usually the last time the barcode was scanned or inventory was done)
890   `stack` tinyint(1) default NULL,
891   `notforloan` tinyint(1) NOT NULL default 0, -- authorized value defining why this item is not for loan (MARC21 952$7)
892   `damaged` tinyint(1) NOT NULL default 0, -- authorized value defining this item as damaged (MARC21 952$4)
893   `itemlost` tinyint(1) NOT NULL default 0, -- authorized value defining this item as lost (MARC21 952$1)
894   `itemlost_on` datetime DEFAULT NULL, -- the date and time an item was last marked as lost, NULL if not lost
895   `withdrawn` tinyint(1) NOT NULL default 0, -- authorized value defining this item as withdrawn (MARC21 952$0)
896   `withdrawn_on` datetime DEFAULT NULL, -- the date and time an item was last marked as withdrawn, NULL if not withdrawn
897   `itemcallnumber` varchar(255) default NULL, -- call number for this item (MARC21 952$o)
898   `coded_location_qualifier` varchar(10) default NULL, -- coded location qualifier(MARC21 952$f)
899   `issues` smallint(6) default NULL, -- number of times this item has been checked out
900   `renewals` smallint(6) default NULL, -- number of times this item has been renewed
901   `reserves` smallint(6) default NULL, -- number of times this item has been placed on hold/reserved
902   `restricted` tinyint(1) default NULL, -- authorized value defining use restrictions for this item (MARC21 952$5)
903   `itemnotes` mediumtext, -- public notes on this item (MARC21 952$x)
904   `holdingbranch` varchar(10) default NULL, -- foreign key from the branches table for the library that is currently in possession item (MARC21 952$b)
905   `paidfor` mediumtext,
906   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this item was last altered
907   `location` varchar(80) default NULL, -- authorized value for the shelving location for this item (MARC21 952$c)
908   `permanent_location` varchar(80) default NULL, -- linked to the CART and PROC temporary locations feature, stores the permanent shelving location
909   `onloan` date default NULL, -- defines if item is checked out (NULL for not checked out, and checkout date for checked out)
910   `cn_source` varchar(10) default NULL, -- classification source used on this item (MARC21 952$2)
911   `cn_sort` varchar(30) default NULL, -- normalized form of the call number (MARC21 952$o) used for sorting
912   `ccode` varchar(10) default NULL, -- authorized value for the collection code associated with this item (MARC21 952$8)
913   `materials` text default NULL, -- materials specified (MARC21 952$3)
914   `uri` varchar(255) default NULL, -- URL for the item (MARC21 952$u)
915   `itype` varchar(10) default NULL, -- foreign key from the itemtypes table defining the type for this item (MARC21 952$y)
916   `more_subfields_xml` longtext default NULL, -- additional 952 subfields in XML format
917   `enumchron` text default NULL, -- serial enumeration/chronology for the item (MARC21 952$h)
918   `copynumber` varchar(32) default NULL, -- copy number (MARC21 952$t)
919   `stocknumber` varchar(32) default NULL, -- inventory number (MARC21 952$i)
920   PRIMARY KEY  (`itemnumber`),
921   KEY `delitembarcodeidx` (`barcode`),
922   KEY `delitemstocknumberidx` (`stocknumber`),
923   KEY `delitembinoidx` (`biblioitemnumber`),
924   KEY `delitembibnoidx` (`biblionumber`),
925   KEY `delhomebranch` (`homebranch`),
926   KEY `delholdingbranch` (`holdingbranch`),
927   KEY `itype_idx` (`itype`)
928 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
929
930 --
931 -- Table structure for table `ethnicity`
932 --
933
934 DROP TABLE IF EXISTS `ethnicity`;
935 CREATE TABLE `ethnicity` (
936   `code` varchar(10) NOT NULL default '',
937   `name` varchar(255) default NULL,
938   PRIMARY KEY  (`code`)
939 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
940
941 --
942 -- Table structure for table `export_format`
943 --
944
945 DROP TABLE IF EXISTS `export_format`;
946 CREATE TABLE `export_format` (
947   `export_format_id` int(11) NOT NULL auto_increment,
948   `profile` varchar(255) NOT NULL,
949   `description` mediumtext NOT NULL,
950   `content` mediumtext NOT NULL,
951   `csv_separator` varchar(2) NOT NULL,
952   `field_separator` varchar(2) NOT NULL,
953   `subfield_separator` varchar(2) NOT NULL,
954   `encoding` varchar(255) NOT NULL,
955   `type` varchar(255) DEFAULT 'marc',
956   PRIMARY KEY  (`export_format_id`)
957 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Used for CSV export';
958
959
960 --
961 -- Table structure for table `hold_fill_targets`
962 --
963
964 DROP TABLE IF EXISTS `hold_fill_targets`;
965 CREATE TABLE hold_fill_targets (
966   `borrowernumber` int(11) NOT NULL,
967   `biblionumber` int(11) NOT NULL,
968   `itemnumber` int(11) NOT NULL,
969   `source_branchcode`  varchar(10) default NULL,
970   `item_level_request` tinyint(4) NOT NULL default 0,
971   PRIMARY KEY `itemnumber` (`itemnumber`),
972   KEY `bib_branch` (`biblionumber`, `source_branchcode`),
973   CONSTRAINT `hold_fill_targets_ibfk_1` FOREIGN KEY (`borrowernumber`)
974     REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
975   CONSTRAINT `hold_fill_targets_ibfk_2` FOREIGN KEY (`biblionumber`)
976     REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE,
977   CONSTRAINT `hold_fill_targets_ibfk_3` FOREIGN KEY (`itemnumber`)
978     REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
979   CONSTRAINT `hold_fill_targets_ibfk_4` FOREIGN KEY (`source_branchcode`)
980     REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE
981 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
982
983 --
984 -- Table structure for table `import_batches`
985 --
986
987 DROP TABLE IF EXISTS `import_batches`;
988 CREATE TABLE `import_batches` ( -- information about batches of marc records that have been imported
989   `import_batch_id` int(11) NOT NULL auto_increment, -- unique identifier and primary key
990   `matcher_id` int(11) default NULL, -- the id of the match rule used (matchpoints.matcher_id)
991   `template_id` int(11) default NULL,
992   `branchcode` varchar(10) default NULL,
993   `num_records` int(11) NOT NULL default 0, -- number of records in the file
994   `num_items` int(11) NOT NULL default 0, -- number of items in the file
995   `upload_timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP, -- date and time the file was uploaded
996   `overlay_action` enum('replace', 'create_new', 'use_template', 'ignore') NOT NULL default 'create_new', -- how to handle duplicate records
997   `nomatch_action` enum('create_new', 'ignore') NOT NULL default 'create_new', -- how to handle records where no match is found
998   `item_action` enum('always_add', 'add_only_for_matches', 'add_only_for_new', 'ignore', 'replace') NOT NULL default 'always_add', -- what to do with item records
999   `import_status` enum('staging', 'staged', 'importing', 'imported', 'reverting', 'reverted', 'cleaned') NOT NULL default 'staging', -- the status of the imported file
1000   `batch_type` enum('batch', 'z3950', 'webservice') NOT NULL default 'batch', -- where this batch has come from
1001   `record_type` enum('biblio', 'auth', 'holdings') NOT NULL default 'biblio', -- type of record in the batch
1002   `file_name` varchar(100), -- the name of the file uploaded
1003   `comments` mediumtext, -- any comments added when the file was uploaded
1004   PRIMARY KEY (`import_batch_id`),
1005   KEY `branchcode` (`branchcode`)
1006 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1007
1008 --
1009 -- Table structure for table `import_records`
1010 --
1011
1012 DROP TABLE IF EXISTS `import_records`;
1013 CREATE TABLE `import_records` (
1014   `import_record_id` int(11) NOT NULL auto_increment,
1015   `import_batch_id` int(11) NOT NULL,
1016   `branchcode` varchar(10) default NULL,
1017   `record_sequence` int(11) NOT NULL default 0,
1018   `upload_timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP,
1019   `import_date` DATE default NULL,
1020   `marc` longblob NOT NULL,
1021   `marcxml` longtext NOT NULL,
1022   `marcxml_old` longtext NOT NULL,
1023   `record_type` enum('biblio', 'auth', 'holdings') NOT NULL default 'biblio',
1024   `overlay_status` enum('no_match', 'auto_match', 'manual_match', 'match_applied') NOT NULL default 'no_match',
1025   `status` enum('error', 'staged', 'imported', 'reverted', 'items_reverted', 'ignored') NOT NULL default 'staged',
1026   `import_error` mediumtext,
1027   `encoding` varchar(40) NOT NULL default '',
1028   `z3950random` varchar(40) default NULL,
1029   PRIMARY KEY (`import_record_id`),
1030   CONSTRAINT `import_records_ifbk_1` FOREIGN KEY (`import_batch_id`)
1031              REFERENCES `import_batches` (`import_batch_id`) ON DELETE CASCADE ON UPDATE CASCADE,
1032   KEY `branchcode` (`branchcode`),
1033   KEY `batch_sequence` (`import_batch_id`, `record_sequence`),
1034   KEY `batch_id_record_type` (`import_batch_id`,`record_type`)
1035 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1036
1037 --
1038 -- Table structure for `import_record_matches`
1039 --
1040 DROP TABLE IF EXISTS `import_record_matches`;
1041 CREATE TABLE `import_record_matches` ( -- matches found when importing a batch of records
1042   `import_record_id` int(11) NOT NULL, -- the id given to the imported bib record (import_records.import_record_id)
1043   `candidate_match_id` int(11) NOT NULL, -- the biblio the imported record matches (biblio.biblionumber)
1044   `score` int(11) NOT NULL default 0, -- the match score
1045   CONSTRAINT `import_record_matches_ibfk_1` FOREIGN KEY (`import_record_id`)
1046              REFERENCES `import_records` (`import_record_id`) ON DELETE CASCADE ON UPDATE CASCADE,
1047   KEY `record_score` (`import_record_id`, `score`)
1048 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1049
1050 --
1051 -- Table structure for table `import_auths`
1052 --
1053
1054 DROP TABLE IF EXISTS `import_auths`;
1055 CREATE TABLE `import_auths` (
1056   `import_record_id` int(11) NOT NULL,
1057   `matched_authid` int(11) default NULL,
1058   `control_number` varchar(25) default NULL,
1059   `authorized_heading` varchar(128) default NULL,
1060   `original_source` varchar(25) default NULL,
1061   CONSTRAINT `import_auths_ibfk_1` FOREIGN KEY (`import_record_id`)
1062              REFERENCES `import_records` (`import_record_id`) ON DELETE CASCADE ON UPDATE CASCADE,
1063   KEY `matched_authid` (`matched_authid`)
1064 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1065
1066 --
1067 -- Table structure for table `import_biblios`
1068 --
1069
1070 DROP TABLE IF EXISTS `import_biblios`;
1071 CREATE TABLE `import_biblios` (
1072   `import_record_id` int(11) NOT NULL,
1073   `matched_biblionumber` int(11) default NULL,
1074   `control_number` varchar(25) default NULL,
1075   `original_source` varchar(25) default NULL,
1076   `title` varchar(128) default NULL,
1077   `author` varchar(80) default NULL,
1078   `isbn` varchar(30) default NULL,
1079   `issn` varchar(9) default NULL,
1080   `has_items` tinyint(1) NOT NULL default 0,
1081   CONSTRAINT `import_biblios_ibfk_1` FOREIGN KEY (`import_record_id`)
1082              REFERENCES `import_records` (`import_record_id`) ON DELETE CASCADE ON UPDATE CASCADE,
1083   KEY `matched_biblionumber` (`matched_biblionumber`),
1084   KEY `title` (`title`),
1085   KEY `isbn` (`isbn`)
1086 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1087
1088 --
1089 -- Table structure for table `import_items`
1090 --
1091
1092 DROP TABLE IF EXISTS `import_items`;
1093 CREATE TABLE `import_items` (
1094   `import_items_id` int(11) NOT NULL auto_increment,
1095   `import_record_id` int(11) NOT NULL,
1096   `itemnumber` int(11) default NULL,
1097   `branchcode` varchar(10) default NULL,
1098   `status` enum('error', 'staged', 'imported', 'reverted', 'ignored') NOT NULL default 'staged',
1099   `marcxml` longtext NOT NULL,
1100   `import_error` mediumtext,
1101   PRIMARY KEY (`import_items_id`),
1102   CONSTRAINT `import_items_ibfk_1` FOREIGN KEY (`import_record_id`)
1103              REFERENCES `import_records` (`import_record_id`) ON DELETE CASCADE ON UPDATE CASCADE,
1104   KEY `itemnumber` (`itemnumber`),
1105   KEY `branchcode` (`branchcode`)
1106 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1107
1108 --
1109 -- Table structure for table `issues`
1110 --
1111
1112 DROP TABLE IF EXISTS `issues`;
1113 CREATE TABLE `issues` ( -- information related to check outs or issues
1114   `borrowernumber` int(11), -- foreign key, linking this to the borrowers table for the patron this item was checked out to
1115   `itemnumber` int(11), -- foreign key, linking this to the items table for the item that was checked out
1116   `date_due` datetime default NULL, -- datetime the item is due (yyyy-mm-dd hh:mm::ss)
1117   `branchcode` varchar(10) default NULL, -- foreign key, linking to the branches table for the location the item was checked out
1118   `issuingbranch` varchar(18) default NULL,
1119   `returndate` datetime default NULL, -- date the item was returned, will be NULL until moved to old_issues
1120   `lastreneweddate` datetime default NULL, -- date the item was last renewed
1121   `return` varchar(4) default NULL,
1122   `renewals` tinyint(4) default NULL, -- lists the number of times the item was renewed
1123   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this record was last touched
1124   `issuedate` datetime default NULL, -- date the item was checked out or issued
1125   KEY `issuesborridx` (`borrowernumber`),
1126   KEY `itemnumber_idx` (`itemnumber`),
1127   KEY `branchcode_idx` (`branchcode`),
1128   KEY `issuingbranch_idx` (`issuingbranch`),
1129   KEY `bordate` (`borrowernumber`,`timestamp`),
1130   CONSTRAINT `issues_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE RESTRICT ON UPDATE CASCADE,
1131   CONSTRAINT `issues_ibfk_2` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE RESTRICT ON UPDATE CASCADE
1132 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1133
1134 --
1135 -- Table structure for table `issuingrules`
1136 --
1137
1138 DROP TABLE IF EXISTS `issuingrules`;
1139 CREATE TABLE `issuingrules` ( -- circulation and fine rules
1140   `categorycode` varchar(10) NOT NULL default '', -- patron category this rule is for (categories.categorycode)
1141   `itemtype` varchar(10) NOT NULL default '', -- item type this rule is for (itemtypes.itemtype)
1142   `restrictedtype` tinyint(1) default NULL, -- not used? always NULL
1143   `rentaldiscount` decimal(28,6) default NULL, -- percent discount on the rental charge for this item
1144   `reservecharge` decimal(28,6) default NULL,
1145   `fine` decimal(28,6) default NULL, -- fine amount
1146   `finedays` int(11) default NULL, -- suspension in days
1147   `firstremind` int(11) default NULL, -- fine grace period
1148   `chargeperiod` int(11) default NULL, -- how often the fine amount is charged
1149   `accountsent` int(11) default NULL, -- not used? always NULL
1150   `chargename` varchar(100) default NULL, -- not used? always NULL
1151   `maxissueqty` int(4) default NULL, -- total number of checkouts allowed
1152   `issuelength` int(4) default NULL, -- length of checkout in the unit set in issuingrules.lengthunit
1153   `lengthunit` varchar(10) default 'days', -- unit of checkout length (days, hours)
1154   `hardduedate` date default NULL, -- hard due date
1155   `hardduedatecompare` tinyint NOT NULL default "0", -- type of hard due date (1 = after, 0 = on, -1 = before)
1156   `renewalsallowed` smallint(6) NOT NULL default "0", -- how many renewals are allowed
1157   `renewalperiod` int(4) default NULL, -- renewal period in the unit set in issuingrules.lengthunit
1158   `reservesallowed` smallint(6) NOT NULL default "0", -- how many holds are allowed
1159   `branchcode` varchar(10) NOT NULL default '', -- the branch this rule is for (branches.branchcode)
1160   overduefinescap decimal(28,6) default NULL, -- the maximum amount of an overdue fine
1161   PRIMARY KEY  (`branchcode`,`categorycode`,`itemtype`),
1162   KEY `categorycode` (`categorycode`),
1163   KEY `itemtype` (`itemtype`)
1164 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1165
1166 --
1167 -- Table structure for table `items`
1168 --
1169
1170 DROP TABLE IF EXISTS `items`;
1171 CREATE TABLE `items` ( -- holdings/item information 
1172   `itemnumber` int(11) NOT NULL auto_increment, -- primary key and unique identifier added by Koha
1173   `biblionumber` int(11) NOT NULL default 0, -- foreign key from biblio table used to link this item to the right bib record
1174   `biblioitemnumber` int(11) NOT NULL default 0, -- foreign key from the biblioitems table to link to item to additional information
1175   `barcode` varchar(20) default NULL, -- item barcode (MARC21 952$p)
1176   `dateaccessioned` date default NULL, -- date the item was acquired or added to Koha (MARC21 952$d)
1177   `booksellerid` mediumtext default NULL, -- where the item was purchased (MARC21 952$e)
1178   `homebranch` varchar(10) default NULL, -- foreign key from the branches table for the library that owns this item (MARC21 952$a)
1179   `price` decimal(8,2) default NULL, -- purchase price (MARC21 952$g)
1180   `replacementprice` decimal(8,2) default NULL, -- cost the library charges to replace the item if it has been marked lost (MARC21 952$v)
1181   `replacementpricedate` date default NULL, -- the date the price is effective from (MARC21 952$w)
1182   `datelastborrowed` date default NULL, -- the date the item was last checked out/issued
1183   `datelastseen` date default NULL, -- the date the item was last see (usually the last time the barcode was scanned or inventory was done)
1184   `stack` tinyint(1) default NULL,
1185   `notforloan` tinyint(1) NOT NULL default 0, -- authorized value defining why this item is not for loan (MARC21 952$7)
1186   `damaged` tinyint(1) NOT NULL default 0, -- authorized value defining this item as damaged (MARC21 952$4)
1187   `itemlost` tinyint(1) NOT NULL default 0, -- authorized value defining this item as lost (MARC21 952$1)
1188   `itemlost_on` datetime DEFAULT NULL, -- the date and time an item was last marked as lost, NULL if not lost
1189   `withdrawn` tinyint(1) NOT NULL default 0, -- authorized value defining this item as withdrawn (MARC21 952$0)
1190   `withdrawn_on` datetime DEFAULT NULL, -- the date and time an item was last marked as withdrawn, NULL if not withdrawn
1191   `itemcallnumber` varchar(255) default NULL, -- call number for this item (MARC21 952$o)
1192   `coded_location_qualifier` varchar(10) default NULL, -- coded location qualifier(MARC21 952$f)
1193   `issues` smallint(6) default NULL, -- number of times this item has been checked out/issued
1194   `renewals` smallint(6) default NULL, -- number of times this item has been renewed
1195   `reserves` smallint(6) default NULL, -- number of times this item has been placed on hold/reserved
1196   `restricted` tinyint(1) default NULL, -- authorized value defining use restrictions for this item (MARC21 952$5)
1197   `itemnotes` mediumtext, -- public notes on this item (MARC21 952$x)
1198   `holdingbranch` varchar(10) default NULL, -- foreign key from the branches table for the library that is currently in possession item (MARC21 952$b)
1199   `paidfor` mediumtext,
1200   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this item was last altered
1201   `location` varchar(80) default NULL, -- authorized value for the shelving location for this item (MARC21 952$c)
1202   `permanent_location` varchar(80) default NULL, -- linked to the CART and PROC temporary locations feature, stores the permanent shelving location
1203   `onloan` date default NULL, -- defines if item is checked out (NULL for not checked out, and checkout date for checked out)
1204   `cn_source` varchar(10) default NULL, -- classification source used on this item (MARC21 952$2)
1205   `cn_sort` varchar(30) default NULL,  -- normalized form of the call number (MARC21 952$o) used for sorting
1206   `ccode` varchar(10) default NULL, -- authorized value for the collection code associated with this item (MARC21 952$8)
1207   `materials` text default NULL, -- materials specified (MARC21 952$3)
1208   `uri` varchar(255) default NULL, -- URL for the item (MARC21 952$u)
1209   `itype` varchar(10) default NULL, -- foreign key from the itemtypes table defining the type for this item (MARC21 952$y)
1210   `more_subfields_xml` longtext default NULL, -- additional 952 subfields in XML format
1211   `enumchron` text default NULL, -- serial enumeration/chronology for the item (MARC21 952$h)
1212   `copynumber` varchar(32) default NULL, -- copy number (MARC21 952$t)
1213   `stocknumber` varchar(32) default NULL, -- inventory number (MARC21 952$i)
1214   PRIMARY KEY  (`itemnumber`),
1215   UNIQUE KEY `itembarcodeidx` (`barcode`),
1216   KEY `itemstocknumberidx` (`stocknumber`),
1217   KEY `itembinoidx` (`biblioitemnumber`),
1218   KEY `itembibnoidx` (`biblionumber`),
1219   KEY `homebranch` (`homebranch`),
1220   KEY `holdingbranch` (`holdingbranch`),
1221   KEY `itemcallnumber` (`itemcallnumber`),
1222   KEY `items_location` (`location`),
1223   KEY `items_ccode` (`ccode`),
1224   KEY `itype_idx` (`itype`),
1225   CONSTRAINT `items_ibfk_1` FOREIGN KEY (`biblioitemnumber`) REFERENCES `biblioitems` (`biblioitemnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1226   CONSTRAINT `items_ibfk_2` FOREIGN KEY (`homebranch`) REFERENCES `branches` (`branchcode`) ON UPDATE CASCADE,
1227   CONSTRAINT `items_ibfk_3` FOREIGN KEY (`holdingbranch`) REFERENCES `branches` (`branchcode`) ON UPDATE CASCADE
1228 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1229
1230 --
1231 -- Table structure for table `itemtypes`
1232 --
1233
1234 DROP TABLE IF EXISTS `itemtypes`;
1235 CREATE TABLE `itemtypes` ( -- defines the item types
1236   itemtype varchar(10) NOT NULL default '', -- unique key, a code associated with the item type
1237   description mediumtext, -- a plain text explanation of the item type
1238   rentalcharge double(16,4) default NULL, -- the amount charged when this item is checked out/issued
1239   notforloan smallint(6) default NULL, -- 1 if the item is not for loan, 0 if the item is available for loan
1240   imageurl varchar(200) default NULL, -- URL for the item type icon
1241   summary text, -- information from the summary field, may include HTML
1242   checkinmsg VARCHAR(255), -- message that is displayed when an item with the given item type is checked in
1243   checkinmsgtype CHAR(16) DEFAULT 'message' NOT NULL, -- type (CSS class) for the checkinmsg, can be "alert" or "message"
1244   PRIMARY KEY  (`itemtype`),
1245   UNIQUE KEY `itemtype` (`itemtype`)
1246 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1247
1248 --
1249 -- Table structure for table `creator_batches`
1250 --
1251
1252 DROP TABLE IF EXISTS `creator_batches`;
1253 SET @saved_cs_client     = @@character_set_client;
1254 SET character_set_client = utf8;
1255 CREATE TABLE `creator_batches` (
1256   `label_id` int(11) NOT NULL AUTO_INCREMENT,
1257   `batch_id` int(10) NOT NULL DEFAULT '1',
1258   `item_number` int(11) DEFAULT NULL,
1259   `borrower_number` int(11) DEFAULT NULL,
1260   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
1261   `branch_code` varchar(10) NOT NULL DEFAULT 'NB',
1262   `creator` char(15) NOT NULL DEFAULT 'Labels',
1263   PRIMARY KEY (`label_id`),
1264   KEY `branch_fk_constraint` (`branch_code`),
1265   KEY `item_fk_constraint` (`item_number`),
1266   KEY `borrower_fk_constraint` (`borrower_number`),
1267   CONSTRAINT `creator_batches_ibfk_1` FOREIGN KEY (`borrower_number`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1268   CONSTRAINT `creator_batches_ibfk_2` FOREIGN KEY (`branch_code`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE,
1269   CONSTRAINT `creator_batches_ibfk_3` FOREIGN KEY (`item_number`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE
1270 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1271
1272 --
1273 -- Table structure for table `creator_images`
1274 --
1275
1276 DROP TABLE IF EXISTS `creator_images`;
1277 SET @saved_cs_client     = @@character_set_client;
1278 SET character_set_client = utf8;
1279 CREATE TABLE `creator_images` (
1280   `image_id` int(4) NOT NULL AUTO_INCREMENT,
1281   `imagefile` mediumblob,
1282   `image_name` char(20) NOT NULL DEFAULT 'DEFAULT',
1283   PRIMARY KEY (`image_id`),
1284   UNIQUE KEY `image_name_index` (`image_name`)
1285 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1286
1287 --
1288 -- Table structure for table `creator_layouts`
1289 --
1290
1291 DROP TABLE IF EXISTS `creator_layouts`;
1292 SET @saved_cs_client     = @@character_set_client;
1293 SET character_set_client = utf8;
1294 CREATE TABLE `creator_layouts` (
1295   `layout_id` int(4) NOT NULL AUTO_INCREMENT,
1296   `barcode_type` char(100) NOT NULL DEFAULT 'CODE39',
1297   `start_label` int(2) NOT NULL DEFAULT '1',
1298   `printing_type` char(32) NOT NULL DEFAULT 'BAR',
1299   `layout_name` char(20) NOT NULL DEFAULT 'DEFAULT',
1300   `guidebox` int(1) DEFAULT '0',
1301   `font` char(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT 'TR',
1302   `font_size` int(4) NOT NULL DEFAULT '10',
1303   `units` char(20) NOT NULL DEFAULT 'POINT',
1304   `callnum_split` int(1) DEFAULT '0',
1305   `text_justify` char(1) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT 'L',
1306   `format_string` varchar(210) NOT NULL DEFAULT 'barcode',
1307   `layout_xml` text NOT NULL,
1308   `creator` char(15) NOT NULL DEFAULT 'Labels',
1309   PRIMARY KEY (`layout_id`)
1310 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1311
1312 --
1313 -- Table structure for table `creator_templates`
1314 --
1315
1316 DROP TABLE IF EXISTS `creator_templates`;
1317 SET @saved_cs_client     = @@character_set_client;
1318 SET character_set_client = utf8;
1319 CREATE TABLE `creator_templates` (
1320   `template_id` int(4) NOT NULL AUTO_INCREMENT,
1321   `profile_id` int(4) DEFAULT NULL,
1322   `template_code` char(100) NOT NULL DEFAULT 'DEFAULT TEMPLATE',
1323   `template_desc` char(100) NOT NULL DEFAULT 'Default description',
1324   `page_width` float NOT NULL DEFAULT '0',
1325   `page_height` float NOT NULL DEFAULT '0',
1326   `label_width` float NOT NULL DEFAULT '0',
1327   `label_height` float NOT NULL DEFAULT '0',
1328   `top_text_margin` float NOT NULL DEFAULT '0',
1329   `left_text_margin` float NOT NULL DEFAULT '0',
1330   `top_margin` float NOT NULL DEFAULT '0',
1331   `left_margin` float NOT NULL DEFAULT '0',
1332   `cols` int(2) NOT NULL DEFAULT '0',
1333   `rows` int(2) NOT NULL DEFAULT '0',
1334   `col_gap` float NOT NULL DEFAULT '0',
1335   `row_gap` float NOT NULL DEFAULT '0',
1336   `units` char(20) NOT NULL DEFAULT 'POINT',
1337   `creator` char(15) NOT NULL DEFAULT 'Labels',
1338   PRIMARY KEY (`template_id`),
1339   KEY `template_profile_fk_constraint` (`profile_id`)
1340 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1341
1342 --
1343 -- Table structure for table `letter`
1344 --
1345
1346 DROP TABLE IF EXISTS `letter`;
1347 CREATE TABLE `letter` ( -- table for all notice templates in Koha
1348   `module` varchar(20) NOT NULL default '', -- Koha module that triggers this notice or slip
1349   `code` varchar(20) NOT NULL default '', -- unique identifier for this notice or slip
1350   `branchcode` varchar(10) default NULL, -- the branch this notice or slip is used at (branches.branchcode)
1351   `name` varchar(100) NOT NULL default '', -- plain text name for this notice or slip
1352   `is_html` tinyint(1) default 0, -- does this notice or slip use HTML (1 for yes, 0 for no)
1353   `title` varchar(200) NOT NULL default '', -- subject line of the notice
1354   `content` text, -- body text for the notice or slip
1355   PRIMARY KEY  (`module`,`code`, `branchcode`)
1356 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1357
1358 --
1359 -- Table structure for table `marc_subfield_structure`
1360 --
1361
1362 DROP TABLE IF EXISTS `marc_subfield_structure`;
1363 CREATE TABLE `marc_subfield_structure` (
1364   `tagfield` varchar(3) NOT NULL default '',
1365   `tagsubfield` varchar(1) NOT NULL default '' COLLATE utf8_bin,
1366   `liblibrarian` varchar(255) NOT NULL default '',
1367   `libopac` varchar(255) NOT NULL default '',
1368   `repeatable` tinyint(4) NOT NULL default 0,
1369   `mandatory` tinyint(4) NOT NULL default 0,
1370   `kohafield` varchar(40) default NULL,
1371   `tab` tinyint(1) default NULL,
1372   `authorised_value` varchar(20) default NULL,
1373   `authtypecode` varchar(20) default NULL,
1374   `value_builder` varchar(80) default NULL,
1375   `isurl` tinyint(1) default NULL,
1376   `hidden` tinyint(1) default NULL,
1377   `frameworkcode` varchar(4) NOT NULL default '',
1378   `seealso` varchar(1100) default NULL,
1379   `link` varchar(80) default NULL,
1380   `defaultvalue` text default NULL,
1381   `maxlength` int(4) NOT NULL DEFAULT '9999',
1382   PRIMARY KEY  (`frameworkcode`,`tagfield`,`tagsubfield`),
1383   KEY `kohafield_2` (`kohafield`),
1384   KEY `tab` (`frameworkcode`,`tab`),
1385   KEY `kohafield` (`frameworkcode`,`kohafield`)
1386 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1387
1388 --
1389 -- Table structure for table `marc_tag_structure`
1390 --
1391
1392 DROP TABLE IF EXISTS `marc_tag_structure`;
1393 CREATE TABLE `marc_tag_structure` (
1394   `tagfield` varchar(3) NOT NULL default '',
1395   `liblibrarian` varchar(255) NOT NULL default '',
1396   `libopac` varchar(255) NOT NULL default '',
1397   `repeatable` tinyint(4) NOT NULL default 0,
1398   `mandatory` tinyint(4) NOT NULL default 0,
1399   `authorised_value` varchar(10) default NULL,
1400   `frameworkcode` varchar(4) NOT NULL default '',
1401   PRIMARY KEY  (`frameworkcode`,`tagfield`)
1402 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1403
1404 --
1405 -- Table structure for table `marc_matchers`
1406 --
1407
1408 DROP TABLE IF EXISTS `marc_matchers`;
1409 CREATE TABLE `marc_matchers` (
1410   `matcher_id` int(11) NOT NULL auto_increment,
1411   `code` varchar(10) NOT NULL default '',
1412   `description` varchar(255) NOT NULL default '',
1413   `record_type` varchar(10) NOT NULL default 'biblio',
1414   `threshold` int(11) NOT NULL default 0,
1415   PRIMARY KEY (`matcher_id`),
1416   KEY `code` (`code`),
1417   KEY `record_type` (`record_type`)
1418 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1419
1420 --
1421 -- Table structure for table `matchpoints`
1422 --
1423 DROP TABLE IF EXISTS `matchpoints`;
1424 CREATE TABLE `matchpoints` (
1425   `matcher_id` int(11) NOT NULL,
1426   `matchpoint_id` int(11) NOT NULL auto_increment,
1427   `search_index` varchar(30) NOT NULL default '',
1428   `score` int(11) NOT NULL default 0,
1429   PRIMARY KEY (`matchpoint_id`),
1430   CONSTRAINT `matchpoints_ifbk_1` FOREIGN KEY (`matcher_id`)
1431   REFERENCES `marc_matchers` (`matcher_id`) ON DELETE CASCADE ON UPDATE CASCADE
1432 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1433
1434
1435 --
1436 -- Table structure for table `matchpoint_components`
1437 --
1438 DROP TABLE IF EXISTS `matchpoint_components`;
1439 CREATE TABLE `matchpoint_components` (
1440   `matchpoint_id` int(11) NOT NULL,
1441   `matchpoint_component_id` int(11) NOT NULL auto_increment,
1442   sequence int(11) NOT NULL default 0,
1443   tag varchar(3) NOT NULL default '',
1444   subfields varchar(40) NOT NULL default '',
1445   offset int(4) NOT NULL default 0,
1446   length int(4) NOT NULL default 0,
1447   PRIMARY KEY (`matchpoint_component_id`),
1448   KEY `by_sequence` (`matchpoint_id`, `sequence`),
1449   CONSTRAINT `matchpoint_components_ifbk_1` FOREIGN KEY (`matchpoint_id`)
1450   REFERENCES `matchpoints` (`matchpoint_id`) ON DELETE CASCADE ON UPDATE CASCADE
1451 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1452
1453 --
1454 -- Table structure for table `matcher_component_norms`
1455 --
1456 DROP TABLE IF EXISTS `matchpoint_component_norms`;
1457 CREATE TABLE `matchpoint_component_norms` (
1458   `matchpoint_component_id` int(11) NOT NULL,
1459   `sequence`  int(11) NOT NULL default 0,
1460   `norm_routine` varchar(50) NOT NULL default '',
1461   KEY `matchpoint_component_norms` (`matchpoint_component_id`, `sequence`),
1462   CONSTRAINT `matchpoint_component_norms_ifbk_1` FOREIGN KEY (`matchpoint_component_id`)
1463   REFERENCES `matchpoint_components` (`matchpoint_component_id`) ON DELETE CASCADE ON UPDATE CASCADE
1464 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1465
1466 --
1467 -- Table structure for table `matcher_matchpoints`
1468 --
1469 DROP TABLE IF EXISTS `matcher_matchpoints`;
1470 CREATE TABLE `matcher_matchpoints` (
1471   `matcher_id` int(11) NOT NULL,
1472   `matchpoint_id` int(11) NOT NULL,
1473   CONSTRAINT `matcher_matchpoints_ifbk_1` FOREIGN KEY (`matcher_id`)
1474   REFERENCES `marc_matchers` (`matcher_id`) ON DELETE CASCADE ON UPDATE CASCADE,
1475   CONSTRAINT `matcher_matchpoints_ifbk_2` FOREIGN KEY (`matchpoint_id`)
1476   REFERENCES `matchpoints` (`matchpoint_id`) ON DELETE CASCADE ON UPDATE CASCADE
1477 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1478
1479 --
1480 -- Table structure for table `matchchecks`
1481 --
1482 DROP TABLE IF EXISTS `matchchecks`;
1483 CREATE TABLE `matchchecks` (
1484   `matcher_id` int(11) NOT NULL,
1485   `matchcheck_id` int(11) NOT NULL auto_increment,
1486   `source_matchpoint_id` int(11) NOT NULL,
1487   `target_matchpoint_id` int(11) NOT NULL,
1488   PRIMARY KEY (`matchcheck_id`),
1489   CONSTRAINT `matcher_matchchecks_ifbk_1` FOREIGN KEY (`matcher_id`)
1490   REFERENCES `marc_matchers` (`matcher_id`) ON DELETE CASCADE ON UPDATE CASCADE,
1491   CONSTRAINT `matcher_matchchecks_ifbk_2` FOREIGN KEY (`source_matchpoint_id`)
1492   REFERENCES `matchpoints` (`matchpoint_id`) ON DELETE CASCADE ON UPDATE CASCADE,
1493   CONSTRAINT `matcher_matchchecks_ifbk_3` FOREIGN KEY (`target_matchpoint_id`)
1494   REFERENCES `matchpoints` (`matchpoint_id`) ON DELETE CASCADE ON UPDATE CASCADE
1495 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1496
1497 --
1498 -- Table structure for table `need_merge_authorities`
1499 --
1500
1501 DROP TABLE IF EXISTS `need_merge_authorities`;
1502 CREATE TABLE `need_merge_authorities` ( -- keeping track of authority records still to be merged by merge_authority cron job (used only if pref dontmerge is ON)
1503   `id` int NOT NULL auto_increment PRIMARY KEY, -- unique id
1504   `authid` bigint NOT NULL, -- reference to authority record
1505   `done` tinyint DEFAULT 0  -- indication whether merge has been executed (0=not done, 1= done, 2= in progress)
1506 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1507
1508 --
1509 -- Table structure for table `notifys`
1510 --
1511
1512 DROP TABLE IF EXISTS `notifys`;
1513 CREATE TABLE `notifys` (
1514   `notify_id` int(11) NOT NULL default 0,
1515   `borrowernumber` int(11) NOT NULL default 0,
1516   `itemnumber` int(11) NOT NULL default 0,
1517   `notify_date` date default NULL,
1518   `notify_send_date` date default NULL,
1519   `notify_level` int(1) NOT NULL default 0,
1520   `method` varchar(20) NOT NULL default ''
1521 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1522
1523 --
1524 -- Table structure for table `oai_sets`
1525 --
1526
1527 DROP TABLE IF EXISTS `oai_sets`;
1528 CREATE TABLE `oai_sets` (
1529   `id` int(11) NOT NULL auto_increment,
1530   `spec` varchar(80) NOT NULL UNIQUE,
1531   `name` varchar(80) NOT NULL,
1532   PRIMARY KEY (`id`)
1533 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1534
1535 --
1536 -- Table structure for table `oai_sets_descriptions`
1537 --
1538
1539 DROP TABLE IF EXISTS `oai_sets_descriptions`;
1540 CREATE TABLE `oai_sets_descriptions` (
1541   `set_id` int(11) NOT NULL,
1542   `description` varchar(255) NOT NULL,
1543   CONSTRAINT `oai_sets_descriptions_ibfk_1` FOREIGN KEY (`set_id`) REFERENCES `oai_sets` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
1544 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1545
1546 --
1547 -- Table structure for table `oai_sets_mappings`
1548 --
1549
1550 DROP TABLE IF EXISTS `oai_sets_mappings`;
1551 CREATE TABLE `oai_sets_mappings` (
1552   `set_id` int(11) NOT NULL,
1553   `marcfield` char(3) NOT NULL,
1554   `marcsubfield` char(1) NOT NULL,
1555   `operator` varchar(8) NOT NULL default 'equal',
1556   `marcvalue` varchar(80) NOT NULL,
1557   CONSTRAINT `oai_sets_mappings_ibfk_1` FOREIGN KEY (`set_id`) REFERENCES `oai_sets` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
1558 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1559
1560 --
1561 -- Table structure for table `oai_sets_biblios`
1562 --
1563
1564 DROP TABLE IF EXISTS `oai_sets_biblios`;
1565 CREATE TABLE `oai_sets_biblios` (
1566   `biblionumber` int(11) NOT NULL,
1567   `set_id` int(11) NOT NULL,
1568   PRIMARY KEY (`biblionumber`, `set_id`),
1569   CONSTRAINT `oai_sets_biblios_ibfk_1` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1570   CONSTRAINT `oai_sets_biblios_ibfk_2` FOREIGN KEY (`set_id`) REFERENCES `oai_sets` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
1571 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1572
1573 --
1574 -- Table structure for table `old_issues`
1575 --
1576
1577 DROP TABLE IF EXISTS `old_issues`;
1578 CREATE TABLE `old_issues` ( -- lists items that were checked out and have been returned
1579   `borrowernumber` int(11) default NULL, -- foreign key, linking this to the borrowers table for the patron this item was checked out to
1580   `itemnumber` int(11) default NULL, -- foreign key, linking this to the items table for the item that was checked out
1581   `date_due` datetime default NULL, -- date the item is due (yyyy-mm-dd)
1582   `branchcode` varchar(10) default NULL, -- foreign key, linking to the branches table for the location the item was checked out
1583   `issuingbranch` varchar(18) default NULL,
1584   `returndate` datetime default NULL, -- date the item was returned
1585   `lastreneweddate` datetime default NULL, -- date the item was last renewed
1586   `return` varchar(4) default NULL,
1587   `renewals` tinyint(4) default NULL, -- lists the number of times the item was renewed
1588   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this record was last touched
1589   `issuedate` datetime default NULL, -- date the item was checked out or issued
1590   KEY `old_issuesborridx` (`borrowernumber`),
1591   KEY `old_issuesitemidx` (`itemnumber`),
1592   KEY `branchcode_idx` (`branchcode`),
1593   KEY `issuingbranch_idx` (`issuingbranch`),
1594   KEY `old_bordate` (`borrowernumber`,`timestamp`),
1595   CONSTRAINT `old_issues_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`)
1596     ON DELETE SET NULL ON UPDATE SET NULL,
1597   CONSTRAINT `old_issues_ibfk_2` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`)
1598     ON DELETE SET NULL ON UPDATE SET NULL
1599 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1600
1601 --
1602 -- Table structure for table `old_reserves`
1603 --
1604 DROP TABLE IF EXISTS `old_reserves`;
1605 CREATE TABLE `old_reserves` ( -- this table holds all holds/reserves that have been completed (either filled or cancelled)
1606   `reserve_id` int(11) NOT NULL, -- primary key
1607   `borrowernumber` int(11) default NULL, -- foreign key from the borrowers table defining which patron this hold is for
1608   `reservedate` date default NULL, -- the date the hold was places
1609   `biblionumber` int(11) default NULL, -- foreign key from the biblio table defining which bib record this hold is on
1610   `constrainttype` varchar(1) default NULL,
1611   `branchcode` varchar(10) default NULL, -- foreign key from the branches table defining which branch the patron wishes to pick this hold up at
1612   `notificationdate` date default NULL, -- currently unused
1613   `reminderdate` date default NULL, -- currently unused
1614   `cancellationdate` date default NULL, -- the date this hold was cancelled
1615   `reservenotes` mediumtext, -- notes related to this hold
1616   `priority` smallint(6) default NULL, -- where in the queue the patron sits
1617   `found` varchar(1) default NULL, -- a one letter code defining what the status is of the hold is after it has been confirmed
1618   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this hold was last updated
1619   `itemnumber` int(11) default NULL, -- foreign key from the items table defining the specific item the patron has placed on hold or the item this hold was filled with
1620   `waitingdate` date default NULL, -- the date the item was marked as waiting for the patron at the library
1621   `expirationdate` DATE DEFAULT NULL, -- the date the hold expires (usually the date entered by the patron to say they don't need the hold after a certain date)
1622   `lowestPriority` tinyint(1) NOT NULL, -- has this hold been pinned to the lowest priority in the holds queue (1 for yes, 0 for no)
1623   `suspend` BOOLEAN NOT NULL DEFAULT 0, -- in this hold suspended (1 for yes, 0 for no)
1624   `suspend_until` DATETIME NULL DEFAULT NULL, -- the date this hold is suspended until (NULL for infinitely)
1625   PRIMARY KEY (`reserve_id`),
1626   KEY `old_reserves_borrowernumber` (`borrowernumber`),
1627   KEY `old_reserves_biblionumber` (`biblionumber`),
1628   KEY `old_reserves_itemnumber` (`itemnumber`),
1629   KEY `old_reserves_branchcode` (`branchcode`),
1630   CONSTRAINT `old_reserves_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`)
1631     ON DELETE SET NULL ON UPDATE SET NULL,
1632   CONSTRAINT `old_reserves_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`)
1633     ON DELETE SET NULL ON UPDATE SET NULL,
1634   CONSTRAINT `old_reserves_ibfk_3` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`)
1635     ON DELETE SET NULL ON UPDATE SET NULL
1636 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1637
1638 --
1639 -- Table structure for table `opac_news`
1640 --
1641
1642 DROP TABLE IF EXISTS `opac_news`;
1643 CREATE TABLE `opac_news` ( -- data from the news tool
1644   `idnew` int(10) unsigned NOT NULL auto_increment, -- unique identifier for the news article
1645   `branchcode` varchar(10) default NULL, -- branch code users to create branch specific news, NULL is every branch.
1646   `title` varchar(250) NOT NULL default '', -- title of the news article
1647   `new` text NOT NULL, -- the body of your news article
1648   `lang` varchar(25) NOT NULL default '', -- location for the article (koha is the staff client, slip is the circulation receipt and language codes are for the opac)
1649   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP, -- pulibcation date and time
1650   `expirationdate` date default NULL, -- date the article is set to expire or no longer be visible
1651   `number` int(11) default NULL, -- the order in which this article appears in that specific location
1652   PRIMARY KEY  (`idnew`),
1653   CONSTRAINT opac_news_branchcode_ibfk FOREIGN KEY (branchcode) REFERENCES branches (branchcode)
1654     ON DELETE CASCADE ON UPDATE CASCADE
1655 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1656
1657 --
1658 -- Table structure for table `overduerules`
1659 --
1660
1661 DROP TABLE IF EXISTS `overduerules`;
1662 CREATE TABLE `overduerules` ( -- overdue notice status and triggers
1663   `branchcode` varchar(10) NOT NULL default '', -- foreign key from the branches table to define which branch this rule is for (if blank it's all libraries)
1664   `categorycode` varchar(10) NOT NULL default '', -- foreign key from the categories table to define which patron category this rule is for
1665   `delay1` int(4) default NULL, -- number of days after the item is overdue that the first notice is sent
1666   `letter1` varchar(20) default NULL, -- foreign key from the letter table to define which notice should be sent as the first notice
1667   `debarred1` varchar(1) default 0, -- is the patron restricted when the first notice is sent (1 for yes, 0 for no)
1668   `delay2` int(4) default NULL, -- number of days after the item is overdue that the second notice is sent
1669   `debarred2` varchar(1) default 0, -- is the patron restricted when the second notice is sent (1 for yes, 0 for no)
1670   `letter2` varchar(20) default NULL, -- foreign key from the letter table to define which notice should be sent as the second notice
1671   `delay3` int(4) default NULL, -- number of days after the item is overdue that the third notice is sent
1672   `letter3` varchar(20) default NULL, -- foreign key from the letter table to define which notice should be sent as the third notice
1673   `debarred3` int(1) default 0, -- is the patron restricted when the third notice is sent (1 for yes, 0 for no)
1674   PRIMARY KEY  (`branchcode`,`categorycode`)
1675 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1676
1677 --
1678 -- Table structure for table `patroncards`
1679 --
1680
1681 DROP TABLE IF EXISTS `patroncards`;
1682 CREATE TABLE `patroncards` (
1683   `cardid` int(11) NOT NULL auto_increment,
1684   `batch_id` varchar(10) NOT NULL default '1',
1685   `borrowernumber` int(11) NOT NULL,
1686   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
1687    PRIMARY KEY  (`cardid`),
1688    KEY `patroncards_ibfk_1` (`borrowernumber`),
1689    CONSTRAINT `patroncards_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE
1690 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1691
1692 --
1693 -- Table structure for table `patronimage`
1694 --
1695
1696 DROP TABLE IF EXISTS `patronimage`;
1697 CREATE TABLE `patronimage` ( -- information related to patron images
1698   `borrowernumber` int(11) NOT NULL, -- the borrowernumber of the patron this image is attached to (borrowers.borrowernumber)
1699   `mimetype` varchar(15) NOT NULL, -- the format of the image (png, jpg, etc)
1700   `imagefile` mediumblob NOT NULL, -- the image
1701   PRIMARY KEY  (`borrowernumber`),
1702   CONSTRAINT `patronimage_fk1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE
1703 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1704
1705 -- Table structure for table `pending_offline_operations`
1706 --
1707 -- this table is MyISAM, InnoDB tables are growing only and this table is filled/emptied/filled/emptied...
1708 -- so MyISAM is better in this case
1709
1710 DROP TABLE IF EXISTS `pending_offline_operations`;
1711 CREATE TABLE pending_offline_operations (
1712   operationid int(11) NOT NULL AUTO_INCREMENT,
1713   userid varchar(30) NOT NULL,
1714   branchcode varchar(10) NOT NULL,
1715   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
1716   `action` varchar(10) NOT NULL,
1717   barcode varchar(20) DEFAULT NULL,
1718   cardnumber varchar(16) DEFAULT NULL,
1719   amount decimal(28,6) DEFAULT NULL,
1720   PRIMARY KEY (operationid)
1721 ) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
1722
1723
1724 --
1725 -- Table structure for table `printers`
1726 --
1727
1728 DROP TABLE IF EXISTS `printers`;
1729 CREATE TABLE `printers` (
1730   `printername` varchar(40) NOT NULL default '',
1731   `printqueue` varchar(20) default NULL,
1732   `printtype` varchar(20) default NULL,
1733   PRIMARY KEY  (`printername`)
1734 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1735
1736 --
1737 -- Table structure for table `printers_profile`
1738 --
1739
1740 DROP TABLE IF EXISTS `printers_profile`;
1741 CREATE TABLE `printers_profile` (
1742   `profile_id` int(4) NOT NULL auto_increment,
1743   `printer_name` varchar(40) NOT NULL default 'Default Printer',
1744   `template_id` int(4) NOT NULL default '0',
1745   `paper_bin` varchar(20) NOT NULL default 'Bypass',
1746   `offset_horz` float NOT NULL default '0',
1747   `offset_vert` float NOT NULL default '0',
1748   `creep_horz` float NOT NULL default '0',
1749   `creep_vert` float NOT NULL default '0',
1750   `units` char(20) NOT NULL default 'POINT',
1751   `creator` char(15) NOT NULL DEFAULT 'Labels',
1752   PRIMARY KEY  (`profile_id`),
1753   UNIQUE KEY `printername` (`printer_name`,`template_id`,`paper_bin`,`creator`)
1754 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1755
1756 --
1757 -- Table structure for table `repeatable_holidays`
1758 --
1759
1760 DROP TABLE IF EXISTS `repeatable_holidays`;
1761 CREATE TABLE `repeatable_holidays` ( -- information for the days the library is closed
1762   `id` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
1763   `branchcode` varchar(10) NOT NULL default '', -- foreign key from the branches table, defines which branch this closing is for
1764   `weekday` smallint(6) default NULL, -- day of the week (0=Sunday, 1=Monday, etc) this closing is repeated on
1765   `day` smallint(6) default NULL, -- day of the month this closing is on
1766   `month` smallint(6) default NULL, -- month this closing is in
1767   `title` varchar(50) NOT NULL default '', -- title of this closing
1768   `description` text NOT NULL, -- description for this closing
1769   PRIMARY KEY  (`id`)
1770 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1771
1772 --
1773 -- Table structure for table `reports_dictionary`
1774 --
1775
1776 DROP TABLE IF EXISTS `reports_dictionary`;
1777 CREATE TABLE reports_dictionary ( -- definitions (or snippets of SQL) stored for use in reports
1778    `id` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
1779    `name` varchar(255) default NULL, -- name for this definition
1780    `description` text, -- description for this definition
1781    `date_created` datetime default NULL, -- date and time this definition was created
1782    `date_modified` datetime default NULL, -- date and time this definition was last modified
1783    `saved_sql` text, -- SQL snippet for us in reports
1784    report_area varchar(6) DEFAULT NULL, -- Koha module this definition is for Circulation, Catalog, Patrons, Acquistions, Accounts)
1785    PRIMARY KEY  (id),
1786    KEY dictionary_area_idx (report_area)
1787 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1788
1789 --
1790 -- Table structure for table `reserveconstraints`
1791 --
1792
1793 DROP TABLE IF EXISTS `reserveconstraints`;
1794 CREATE TABLE `reserveconstraints` (
1795   `borrowernumber` int(11) NOT NULL default 0,
1796   `reservedate` date default NULL,
1797   `biblionumber` int(11) NOT NULL default 0,
1798   `biblioitemnumber` int(11) default NULL,
1799   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP
1800 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1801
1802 --
1803 -- Table structure for table `reserves`
1804 --
1805
1806 DROP TABLE IF EXISTS `reserves`;
1807 CREATE TABLE `reserves` ( -- information related to holds/reserves in Koha
1808   `reserve_id` int(11) NOT NULL auto_increment, -- primary key
1809   `borrowernumber` int(11) NOT NULL default 0, -- foreign key from the borrowers table defining which patron this hold is for
1810   `reservedate` date default NULL, -- the date the hold was places
1811   `biblionumber` int(11) NOT NULL default 0, -- foreign key from the biblio table defining which bib record this hold is on
1812   `constrainttype` varchar(1) default NULL,
1813   `branchcode` varchar(10) default NULL, -- foreign key from the branches table defining which branch the patron wishes to pick this hold up at
1814   `notificationdate` date default NULL, -- currently unused
1815   `reminderdate` date default NULL, -- currently unused
1816   `cancellationdate` date default NULL, -- the date this hold was cancelled
1817   `reservenotes` mediumtext, -- notes related to this hold
1818   `priority` smallint(6) default NULL, -- where in the queue the patron sits
1819   `found` varchar(1) default NULL, -- a one letter code defining what the status is of the hold is after it has been confirmed
1820   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this hold was last updated
1821   `itemnumber` int(11) default NULL, -- foreign key from the items table defining the specific item the patron has placed on hold or the item this hold was filled with
1822   `waitingdate` date default NULL, -- the date the item was marked as waiting for the patron at the library
1823   `expirationdate` DATE DEFAULT NULL, -- the date the hold expires (usually the date entered by the patron to say they don't need the hold after a certain date)
1824   `lowestPriority` tinyint(1) NOT NULL,
1825   `suspend` BOOLEAN NOT NULL DEFAULT 0,
1826   `suspend_until` DATETIME NULL DEFAULT NULL,
1827   PRIMARY KEY (`reserve_id`),
1828   KEY priorityfoundidx (priority,found),
1829   KEY `borrowernumber` (`borrowernumber`),
1830   KEY `biblionumber` (`biblionumber`),
1831   KEY `itemnumber` (`itemnumber`),
1832   KEY `branchcode` (`branchcode`),
1833   CONSTRAINT `reserves_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1834   CONSTRAINT `reserves_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1835   CONSTRAINT `reserves_ibfk_3` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
1836   CONSTRAINT `reserves_ibfk_4` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE
1837 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1838
1839 --
1840 -- Table structure for table `reviews`
1841 --
1842
1843 DROP TABLE IF EXISTS `reviews`;
1844 CREATE TABLE `reviews` ( -- patron opac comments
1845   `reviewid` int(11) NOT NULL auto_increment, -- unique identifier for this comment
1846   `borrowernumber` int(11) default NULL, -- foreign key from the borrowers table defining which patron left this comment
1847   `biblionumber` int(11) default NULL, -- foreign key from the biblio table defining which bibliographic record this comment is for
1848   `review` text, -- the body of the comment
1849   `approved` tinyint(4) default NULL, -- whether this comment has been approved by a librarian (1 for yes, 0 for no)
1850   `datereviewed` datetime default NULL, -- the date the comment was left
1851   PRIMARY KEY  (`reviewid`),
1852   CONSTRAINT `reviews_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE CASCADE,
1853   CONSTRAINT `reviews_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE
1854 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1855
1856 --
1857 -- Table structure for table `saved_sql`
1858 --
1859
1860 DROP TABLE IF EXISTS `saved_sql`;
1861 CREATE TABLE saved_sql ( -- saved sql reports
1862    `id` int(11) NOT NULL auto_increment, -- unique id and primary key assigned by Koha
1863    `borrowernumber` int(11) default NULL, -- the staff member who created this report (borrowers.borrowernumber)
1864    `date_created` datetime default NULL, -- the date this report was created
1865    `last_modified` datetime default NULL, -- the date this report was last edited
1866    `savedsql` text, -- the SQL for this report
1867    `last_run` datetime default NULL,
1868    `report_name` varchar(255) default NULL, -- the name of this report
1869    `type` varchar(255) default NULL, -- always 1 for tabular
1870    `notes` text, -- the notes or description given to this report
1871    `cache_expiry` int NOT NULL default 300,
1872    `public` boolean NOT NULL default FALSE,
1873     report_area varchar(6) default NULL,
1874     report_group varchar(80) default NULL,
1875     report_subgroup varchar(80) default NULL,
1876    PRIMARY KEY  (`id`),
1877    KEY sql_area_group_idx (report_group, report_subgroup),
1878    KEY boridx (`borrowernumber`)
1879 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1880
1881
1882 --
1883 -- Table structure for `saved_reports`
1884 --
1885
1886 DROP TABLE IF EXISTS `saved_reports`;
1887 CREATE TABLE saved_reports (
1888    `id` int(11) NOT NULL auto_increment,
1889    `report_id` int(11) default NULL,
1890    `report` longtext,
1891    `date_run` datetime default NULL,
1892    PRIMARY KEY  (`id`)
1893 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1894
1895
1896 --
1897 -- Table structure for table `search_history`
1898 --
1899
1900 DROP TABLE IF EXISTS `search_history`;
1901 CREATE TABLE IF NOT EXISTS `search_history` ( -- patron's opac search history
1902   `userid` int(11) NOT NULL, -- the patron who performed the search (borrowers.borrowernumber)
1903   `sessionid` varchar(32) NOT NULL, -- a system generated session id
1904   `query_desc` varchar(255) NOT NULL, -- the search that was performed
1905   `query_cgi` text NOT NULL, -- the string to append to the search url to rerun the search
1906   `total` int(11) NOT NULL, -- the total of results found
1907   `time` timestamp NOT NULL default CURRENT_TIMESTAMP, -- the date and time the search was run
1908   KEY `userid` (`userid`),
1909   KEY `sessionid` (`sessionid`)
1910 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Opac search history results';
1911
1912
1913 --
1914 -- Table structure for table `serial`
1915 --
1916
1917 DROP TABLE IF EXISTS `serial`;
1918 CREATE TABLE `serial` (
1919   `serialid` int(11) NOT NULL auto_increment,
1920   `biblionumber` varchar(100) NOT NULL default '',
1921   `subscriptionid` varchar(100) NOT NULL default '',
1922   `serialseq` varchar(100) NOT NULL default '',
1923   `status` tinyint(4) NOT NULL default 0,
1924   `planneddate` date default NULL,
1925   `notes` text,
1926   `publisheddate` date default NULL,
1927   `claimdate` date default NULL,
1928   `routingnotes` text,
1929   PRIMARY KEY  (`serialid`)
1930 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1931
1932 --
1933 -- Table structure for table `sessions`
1934 --
1935
1936 DROP TABLE IF EXISTS sessions;
1937 CREATE TABLE sessions (
1938   `id` varchar(32) NOT NULL,
1939   `a_session` text NOT NULL,
1940   PRIMARY KEY (`id`)
1941 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1942
1943 --
1944 -- Table structure for table `special_holidays`
1945 --
1946
1947 DROP TABLE IF EXISTS `special_holidays`;
1948 CREATE TABLE `special_holidays` ( -- non repeatable holidays/library closings
1949   `id` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
1950   `branchcode` varchar(10) NOT NULL default '', -- foreign key from the branches table, defines which branch this closing is for
1951   `day` smallint(6) NOT NULL default 0, -- day of the month this closing is on
1952   `month` smallint(6) NOT NULL default 0, -- month this closing is in
1953   `year` smallint(6) NOT NULL default 0, -- year this closing is in
1954   `isexception` smallint(1) NOT NULL default 1, -- is this a holiday exception to a repeatable holiday (1 for yes, 0 for no)
1955   `title` varchar(50) NOT NULL default '', -- title for this closing
1956   `description` text NOT NULL, -- description of this closing
1957   PRIMARY KEY  (`id`)
1958 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1959
1960 --
1961 -- Table structure for table `statistics`
1962 --
1963
1964 DROP TABLE IF EXISTS `statistics`;
1965 CREATE TABLE `statistics` ( -- information related to transactions (circulation and fines) in Koha
1966   `datetime` datetime default NULL, -- date and time of the transaction
1967   `branch` varchar(10) default NULL, -- foreign key, branch where the transaction occurred
1968   `proccode` varchar(4) default NULL, -- proceedure code 
1969   `value` double(16,4) default NULL, -- monetary value associated with the transaction
1970   `type` varchar(16) default NULL, -- transaction type (locause, issue, return, renew, writeoff, payment, Credit*)
1971   `other` mediumtext,
1972   `usercode` varchar(10) default NULL,
1973   `itemnumber` int(11) default NULL, -- foreign key from the items table, links transaction to a specific item
1974   `itemtype` varchar(10) default NULL, -- foreign key from the itemtypes table, links transaction to a specific item type
1975   `borrowernumber` int(11) default NULL, -- foreign key from the borrowers table, links transaction to a specific borrower
1976   `associatedborrower` int(11) default NULL,
1977   `ccode` varchar(10) default NULL, -- foreign key from the items table, links transaction to a specific collection code
1978   KEY `timeidx` (`datetime`),
1979   KEY `branch_idx` (`branch`),
1980   KEY `proccode_idx` (`proccode`),
1981   KEY `type_idx` (`type`),
1982   KEY `usercode_idx` (`usercode`),
1983   KEY `itemnumber_idx` (`itemnumber`),
1984   KEY `itemtype_idx` (`itemtype`),
1985   KEY `borrowernumber_idx` (`borrowernumber`),
1986   KEY `associatedborrower_idx` (`associatedborrower`),
1987   KEY `ccode_idx` (`ccode`)
1988 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1989
1990 --
1991 -- Table structure for table `stopwords`
1992 --
1993
1994 DROP TABLE IF EXISTS `stopwords`;
1995   CREATE TABLE `stopwords` (
1996   `word` varchar(255) default NULL
1997 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1998
1999 --
2000 -- Table structure for table subscription_frequencies
2001 --
2002
2003 DROP TABLE IF EXISTS subscription_frequencies;
2004 CREATE TABLE subscription_frequencies (
2005     id INTEGER NOT NULL AUTO_INCREMENT,
2006     description TEXT NOT NULL,
2007     displayorder INT DEFAULT NULL,
2008     unit ENUM('day','week','month','year') DEFAULT NULL,
2009     unitsperissue INTEGER NOT NULL DEFAULT '1',
2010     issuesperunit INTEGER NOT NULL DEFAULT '1',
2011     PRIMARY KEY (id)
2012 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2013
2014 --
2015 -- Table structure for table subscription_numberpatterns
2016 --
2017
2018 DROP TABLE IF EXISTS subscription_numberpatterns;
2019 CREATE TABLE subscription_numberpatterns (
2020     id INTEGER NOT NULL AUTO_INCREMENT,
2021     label VARCHAR(255) NOT NULL,
2022     displayorder INTEGER DEFAULT NULL,
2023     description TEXT NOT NULL,
2024     numberingmethod VARCHAR(255) NOT NULL,
2025     label1 VARCHAR(255) DEFAULT NULL,
2026     add1 INTEGER DEFAULT NULL,
2027     every1 INTEGER DEFAULT NULL,
2028     whenmorethan1 INTEGER DEFAULT NULL,
2029     setto1 INTEGER DEFAULT NULL,
2030     numbering1 VARCHAR(255) DEFAULT NULL,
2031     label2 VARCHAR(255) DEFAULT NULL,
2032     add2 INTEGER DEFAULT NULL,
2033     every2 INTEGER DEFAULT NULL,
2034     whenmorethan2 INTEGER DEFAULT NULL,
2035     setto2 INTEGER DEFAULT NULL,
2036     numbering2 VARCHAR(255) DEFAULT NULL,
2037     label3 VARCHAR(255) DEFAULT NULL,
2038     add3 INTEGER DEFAULT NULL,
2039     every3 INTEGER DEFAULT NULL,
2040     whenmorethan3 INTEGER DEFAULT NULL,
2041     setto3 INTEGER DEFAULT NULL,
2042     numbering3 VARCHAR(255) DEFAULT NULL,
2043     PRIMARY KEY (id)
2044 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2045
2046 --
2047 -- Table structure for table `subscription`
2048 --
2049
2050 DROP TABLE IF EXISTS `subscription`;
2051 CREATE TABLE `subscription` (
2052   `biblionumber` int(11) NOT NULL default 0,
2053   `subscriptionid` int(11) NOT NULL auto_increment,
2054   `librarian` varchar(100) default '',
2055   `startdate` date default NULL,
2056   `aqbooksellerid` int(11) default 0,
2057   `cost` int(11) default 0,
2058   `aqbudgetid` int(11) default 0,
2059   `weeklength` int(11) default 0,
2060   `monthlength` int(11) default 0,
2061   `numberlength` int(11) default 0,
2062   `periodicity` integer default null,
2063   countissuesperunit INTEGER NOT NULL DEFAULT 1,
2064   `notes` mediumtext,
2065   `status` varchar(100) NOT NULL default '',
2066   `lastvalue1` int(11) default NULL,
2067   `innerloop1` int(11) default 0,
2068   `lastvalue2` int(11) default NULL,
2069   `innerloop2` int(11) default 0,
2070   `lastvalue3` int(11) default NULL,
2071   `innerloop3` int(11) default 0,
2072   `firstacquidate` date default NULL,
2073   `manualhistory` tinyint(1) NOT NULL default 0,
2074   `irregularity` text,
2075   skip_serialseq BOOLEAN NOT NULL DEFAULT 0,
2076   `letter` varchar(20) default NULL,
2077   `numberpattern` integer default null,
2078   locale VARCHAR(80) DEFAULT NULL,
2079   `distributedto` text,
2080   `internalnotes` longtext,
2081   `callnumber` text,
2082   `location` varchar(80) NULL default '',
2083   `branchcode` varchar(10) NOT NULL default '',
2084   `lastbranch` varchar(10),
2085   `serialsadditems` tinyint(1) NOT NULL default '0',
2086   `staffdisplaycount` VARCHAR(10) NULL,
2087   `opacdisplaycount` VARCHAR(10) NULL,
2088   `graceperiod` int(11) NOT NULL default '0',
2089   `enddate` date default NULL,
2090   `closed` INT(1) NOT NULL DEFAULT 0,
2091   `reneweddate` date default NULL,
2092   PRIMARY KEY  (`subscriptionid`),
2093   CONSTRAINT subscription_ibfk_1 FOREIGN KEY (periodicity) REFERENCES subscription_frequencies (id) ON DELETE SET NULL ON UPDATE CASCADE,
2094   CONSTRAINT subscription_ibfk_2 FOREIGN KEY (numberpattern) REFERENCES subscription_numberpatterns (id) ON DELETE SET NULL ON UPDATE CASCADE
2095 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2096
2097 --
2098 -- Table structure for table `subscriptionhistory`
2099 --
2100
2101 DROP TABLE IF EXISTS `subscriptionhistory`;
2102 CREATE TABLE `subscriptionhistory` (
2103   `biblionumber` int(11) NOT NULL default 0,
2104   `subscriptionid` int(11) NOT NULL default 0,
2105   `histstartdate` date default NULL,
2106   `histenddate` date default NULL,
2107   `missinglist` longtext NOT NULL,
2108   `recievedlist` longtext NOT NULL,
2109   `opacnote` varchar(150) NOT NULL default '',
2110   `librariannote` varchar(150) NOT NULL default '',
2111   PRIMARY KEY  (`subscriptionid`),
2112   KEY `biblionumber` (`biblionumber`)
2113 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2114
2115 --
2116 -- Table structure for table `subscriptionroutinglist`
2117 --
2118
2119 DROP TABLE IF EXISTS `subscriptionroutinglist`;
2120 CREATE TABLE `subscriptionroutinglist` ( -- information related to the routing lists attached to subscriptions
2121   `routingid` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
2122   `borrowernumber` int(11) NOT NULL, -- foreign key from the borrowers table, defines with patron is on the routing list
2123   `ranking` int(11) default NULL, -- where the patron stands in line to receive the serial
2124   `subscriptionid` int(11) NOT NULL, -- foreign key from the subscription table, defines which subscription this routing list is for
2125   PRIMARY KEY  (`routingid`),
2126   UNIQUE (`subscriptionid`, `borrowernumber`),
2127   CONSTRAINT `subscriptionroutinglist_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`)
2128     ON DELETE CASCADE ON UPDATE CASCADE,
2129   CONSTRAINT `subscriptionroutinglist_ibfk_2` FOREIGN KEY (`subscriptionid`) REFERENCES `subscription` (`subscriptionid`)
2130     ON DELETE CASCADE ON UPDATE CASCADE
2131 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2132
2133 --
2134 -- Table structure for table `suggestions`
2135 --
2136
2137 DROP TABLE IF EXISTS `suggestions`;
2138 CREATE TABLE `suggestions` ( -- purchase suggestions
2139   `suggestionid` int(8) NOT NULL auto_increment, -- unique identifier assigned automatically by Koha
2140   `suggestedby` int(11) NOT NULL default 0, -- borrowernumber for the person making the suggestion, foreign key linking to the borrowers table
2141   `suggesteddate` date NOT NULL, -- date the suggestion was submitted
2142   `managedby` int(11) default NULL, -- borrowernumber for the librarian managing the suggestion, foreign key linking to the borrowers table
2143   `manageddate` date default NULL, -- date the suggestion was updated
2144    acceptedby INT(11) default NULL, -- borrowernumber for the librarian who accepted the suggestion, foreign key linking to the borrowers table
2145    accepteddate date default NULL, -- date the suggestion was marked as accepted
2146    rejectedby INT(11) default NULL, -- borrowernumber for the librarian who rejected the suggestion, foreign key linking to the borrowers table
2147    rejecteddate date default NULL, -- date the suggestion was marked as rejected
2148   `STATUS` varchar(10) NOT NULL default '', -- suggestion status (ASKED, CHECKED, ACCEPTED, or REJECTED)
2149   `note` mediumtext, -- note entered on the suggestion
2150   `author` varchar(80) default NULL, -- author of the suggested item
2151   `title` varchar(255) default NULL, -- title of the suggested item
2152   `copyrightdate` smallint(6) default NULL, -- copyright date of the suggested item
2153   `publishercode` varchar(255) default NULL, -- publisher of the suggested item
2154   `date` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,  -- date and time the suggestion was updated
2155   `volumedesc` varchar(255) default NULL,
2156   `publicationyear` smallint(6) default 0,
2157   `place` varchar(255) default NULL, -- publication place of the suggested item
2158   `isbn` varchar(30) default NULL, -- isbn of the suggested item
2159   `mailoverseeing` smallint(1) default 0,
2160   `biblionumber` int(11) default NULL, -- foreign key linking the suggestion to the biblio table after the suggestion has been ordered
2161   `reason` text, -- reason for accepting or rejecting the suggestion
2162   `patronreason` text, -- reason for making the suggestion
2163    budgetid INT(11), -- foreign key linking the suggested budget to the aqbudgets table
2164    branchcode VARCHAR(10) default NULL, -- foreign key linking the suggested branch to the branches table
2165    collectiontitle text default NULL, -- collection name for the suggested item
2166    itemtype VARCHAR(30) default NULL, -- suggested item type 
2167         quantity SMALLINT(6) default NULL, -- suggested quantity to be purchased
2168         currency VARCHAR(3) default NULL, -- suggested currency for the suggested price
2169         price DECIMAL(28,6) default NULL, -- suggested price
2170         total DECIMAL(28,6) default NULL, -- suggested total cost (price*quantity updated for currency)
2171   PRIMARY KEY  (`suggestionid`),
2172   KEY `suggestedby` (`suggestedby`),
2173   KEY `managedby` (`managedby`)
2174 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2175
2176 --
2177 -- Table structure for table `systempreferences`
2178 --
2179
2180 DROP TABLE IF EXISTS `systempreferences`;
2181 CREATE TABLE `systempreferences` ( -- global system preferences
2182   `variable` varchar(50) NOT NULL default '', -- system preference name
2183   `value` text, -- system preference values
2184   `options` mediumtext, -- options for multiple choice system preferences
2185   `explanation` text, -- descriptive text for the system preference
2186   `type` varchar(20) default NULL, -- type of question this preference asks (multiple choice, plain text, yes or no, etc)
2187   PRIMARY KEY  (`variable`)
2188 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2189
2190 --
2191 -- Table structure for table `tags`
2192 --
2193
2194 DROP TABLE IF EXISTS `tags`;
2195 CREATE TABLE `tags` (
2196   `entry` varchar(255) NOT NULL default '',
2197   `weight` bigint(20) NOT NULL default 0,
2198   PRIMARY KEY  (`entry`)
2199 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2200
2201 --
2202 -- Table structure for table `tags_all`
2203 --
2204
2205 DROP TABLE IF EXISTS `tags_all`;
2206 CREATE TABLE `tags_all` ( -- all of the tags
2207   `tag_id`         int(11) NOT NULL auto_increment, -- unique id and primary key
2208   `borrowernumber` int(11) NOT NULL, -- the patron who added the tag (borrowers.borrowernumber)
2209   `biblionumber`   int(11) NOT NULL, -- the bib record this tag was left on (biblio.biblionumber)
2210   `term`      varchar(255) NOT NULL, -- the tag
2211   `language`       int(4) default NULL, -- the language the tag was left in
2212   `date_created` datetime  NOT NULL, -- the date the tag was added
2213   PRIMARY KEY  (`tag_id`),
2214   KEY `tags_borrowers_fk_1` (`borrowernumber`),
2215   KEY `tags_biblionumber_fk_1` (`biblionumber`),
2216   CONSTRAINT `tags_borrowers_fk_1` FOREIGN KEY (`borrowernumber`)
2217         REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2218   CONSTRAINT `tags_biblionumber_fk_1` FOREIGN KEY (`biblionumber`)
2219         REFERENCES `biblio`     (`biblionumber`)  ON DELETE CASCADE ON UPDATE CASCADE
2220 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2221
2222 --
2223 -- Table structure for table `tags_approval`
2224 --
2225
2226 DROP TABLE IF EXISTS `tags_approval`;
2227 CREATE TABLE `tags_approval` ( -- approved tags
2228   `term`   varchar(255) NOT NULL, -- the tag
2229   `approved`     int(1) NOT NULL default '0', -- whether the tag is approved or not (1=yes, 0=pending, -1=rejected)
2230   `date_approved` datetime       default NULL, -- the date this tag was approved
2231   `approved_by` int(11)          default NULL, -- the librarian who approved the tag (borrowers.borrowernumber)
2232   `weight_total` int(9) NOT NULL default '1', -- the total number of times this tag was used
2233   PRIMARY KEY  (`term`),
2234   KEY `tags_approval_borrowers_fk_1` (`approved_by`),
2235   CONSTRAINT `tags_approval_borrowers_fk_1` FOREIGN KEY (`approved_by`)
2236         REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE
2237 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2238
2239 --
2240 -- Table structure for table `tags_index`
2241 --
2242
2243 DROP TABLE IF EXISTS `tags_index`;
2244 CREATE TABLE `tags_index` ( -- a weighted list of all tags and where they are used
2245   `term`    varchar(255) NOT NULL, -- the tag
2246   `biblionumber` int(11) NOT NULL, -- the bib record this tag was used on (biblio.biblionumber)
2247   `weight`        int(9) NOT NULL default '1', -- the number of times this term was used on this bib record
2248   PRIMARY KEY  (`term`,`biblionumber`),
2249   KEY `tags_index_biblionumber_fk_1` (`biblionumber`),
2250   CONSTRAINT `tags_index_term_fk_1` FOREIGN KEY (`term`)
2251         REFERENCES `tags_approval` (`term`)  ON DELETE CASCADE ON UPDATE CASCADE,
2252   CONSTRAINT `tags_index_biblionumber_fk_1` FOREIGN KEY (`biblionumber`)
2253         REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE
2254 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2255
2256 --
2257 -- Table structure for table `userflags`
2258 --
2259
2260 DROP TABLE IF EXISTS `userflags`;
2261 CREATE TABLE `userflags` (
2262   `bit` int(11) NOT NULL default 0,
2263   `flag` varchar(30) default NULL,
2264   `flagdesc` varchar(255) default NULL,
2265   `defaulton` int(11) default NULL,
2266   PRIMARY KEY  (`bit`)
2267 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2268
2269 --
2270 -- Table structure for table `virtualshelves`
2271 --
2272
2273 DROP TABLE IF EXISTS `virtualshelves`;
2274 CREATE TABLE `virtualshelves` ( -- information about lists (or virtual shelves) 
2275   `shelfnumber` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
2276   `shelfname` varchar(255) default NULL, -- name of the list
2277   `owner` int default NULL, -- foreign key linking to the borrowers table (using borrowernumber) for the creator of this list (changed from varchar(80) to int)
2278   `category` varchar(1) default NULL, -- type of list (private [1], public [2])
2279   `sortfield` varchar(16) default NULL, -- the field this list is sorted on
2280   `lastmodified` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time the list was last modified
2281   `allow_add` tinyint(1) default 0, -- permission for adding entries to list
2282   `allow_delete_own` tinyint(1) default 1, -- permission for deleting entries frm list that you added yourself
2283   `allow_delete_other` tinyint(1) default 0, -- permission for deleting entries from list that another person added
2284   PRIMARY KEY  (`shelfnumber`),
2285   CONSTRAINT `virtualshelves_ibfk_1` FOREIGN KEY (`owner`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE SET NULL -- no cascaded delete, please see HandleDelBorrower in VirtualShelves.pm
2286 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2287
2288 --
2289 -- Table structure for table `virtualshelfcontents`
2290 --
2291
2292 DROP TABLE IF EXISTS `virtualshelfcontents`;
2293 CREATE TABLE `virtualshelfcontents` ( -- information about the titles in a list (or virtual shelf)
2294   `shelfnumber` int(11) NOT NULL default 0, -- foreign key linking to the virtualshelves table, defines the list that this record has been added to
2295   `biblionumber` int(11) NOT NULL default 0, -- foreign key linking to the biblio table, defines the bib record that has been added to the list
2296   `flags` int(11) default NULL,
2297   `dateadded` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, -- date and time this bib record was added to the list
2298   `borrowernumber` int, -- borrower number that created this list entry (only the first one is saved: no need for use in/as key)
2299   KEY `shelfnumber` (`shelfnumber`),
2300   KEY `biblionumber` (`biblionumber`),
2301   CONSTRAINT `virtualshelfcontents_ibfk_1` FOREIGN KEY (`shelfnumber`) REFERENCES `virtualshelves` (`shelfnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2302   CONSTRAINT `shelfcontents_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2303   CONSTRAINT `shelfcontents_ibfk_3` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE SET NULL -- no cascaded delete, please see HandleDelBorrower in VirtualShelves.pm
2304 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2305
2306 --
2307 -- Table structure for table `virtualshelfshares`
2308 --
2309
2310 DROP TABLE IF EXISTS `virtualshelfshares`;
2311 CREATE TABLE `virtualshelfshares` ( -- shared private lists
2312   `id` int AUTO_INCREMENT PRIMARY KEY,  -- unique key
2313   `shelfnumber` int NOT NULL,  -- foreign key for virtualshelves
2314   `borrowernumber` int,  -- borrower that accepted access to this list
2315   `invitekey` varchar(10), -- temporary string used in accepting the invitation to access thist list; not-empty means that the invitation has not been accepted yet
2316   `sharedate` datetime,  -- date of invitation or acceptance of invitation
2317   CONSTRAINT `virtualshelfshares_ibfk_1` FOREIGN KEY (`shelfnumber`) REFERENCES `virtualshelves` (`shelfnumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2318   CONSTRAINT `virtualshelfshares_ibfk_2` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE SET NULL ON UPDATE SET NULL -- no cascaded delete, please see HandleDelBorrower in VirtualShelves.pm
2319 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2320
2321 --
2322 -- Table structure for table `z3950servers`
2323 --
2324
2325 DROP TABLE IF EXISTS `z3950servers`;
2326 CREATE TABLE `z3950servers` ( -- connection information for the Z39.50 targets used in cataloging
2327   `host` varchar(255) default NULL, -- target's host name
2328   `port` int(11) default NULL, -- port number used to connect to target
2329   `db` varchar(255) default NULL, -- target's database name
2330   `userid` varchar(255) default NULL, -- username needed to log in to target
2331   `password` varchar(255) default NULL, -- password needed to log in to target
2332   `name` mediumtext, -- name given to the target by the library
2333   `id` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
2334   `checked` smallint(6) default NULL, -- whether this target is checked by default  (1 for yes, 0 for no)
2335   `rank` int(11) default NULL, -- where this target appears in the list of targets
2336   `syntax` varchar(80) default NULL, -- marc format provided by this target
2337   `timeout` int(11) NOT NULL DEFAULT '0', -- number of seconds before Koha stops trying to access this server
2338   `icon` text, -- unused in Koha
2339   `position` enum('primary','secondary','') NOT NULL default 'primary',
2340   `type` enum('zed','opensearch') NOT NULL default 'zed',
2341   `encoding` text default NULL, -- characters encoding provided by this target
2342   `description` text NOT NULL, -- unused in Koha
2343   `recordtype` varchar(45) NOT NULL default 'biblio', -- server contains bibliographic or authority records
2344   PRIMARY KEY  (`id`)
2345 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2346
2347 --
2348 -- Table structure for table `zebraqueue`
2349 --
2350
2351 DROP TABLE IF EXISTS `zebraqueue`;
2352 CREATE TABLE `zebraqueue` (
2353   `id` int(11) NOT NULL auto_increment,
2354   `biblio_auth_number` bigint(20) unsigned NOT NULL default '0',
2355   `operation` char(20) NOT NULL default '',
2356   `server` char(20) NOT NULL default '',
2357   `done` int(11) NOT NULL default '0',
2358   `time` timestamp NOT NULL default CURRENT_TIMESTAMP,
2359   PRIMARY KEY  (`id`),
2360   KEY `zebraqueue_lookup` (`server`, `biblio_auth_number`, `operation`, `done`)
2361 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2362
2363 --
2364 -- Table structure for table `services_throttle`
2365 --
2366
2367 DROP TABLE IF EXISTS `services_throttle`;
2368 CREATE TABLE `services_throttle` (
2369   `service_type` varchar(10) NOT NULL default '',
2370   `service_count` varchar(45) default NULL,
2371   PRIMARY KEY  (`service_type`)
2372 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2373
2374 --
2375 -- Table structure for table `language_subtag_registry`
2376 -- http://www.w3.org/International/articles/language-tags/
2377 -- RFC4646
2378 --
2379
2380 DROP TABLE IF EXISTS language_subtag_registry;
2381 CREATE TABLE language_subtag_registry (
2382         subtag varchar(25),
2383         type varchar(25), -- language-script-region-variant-extension-privateuse
2384         description varchar(25), -- only one of the possible descriptions for ease of reference, see language_descriptions for the complete list
2385         added date,
2386         id int(11) NOT NULL auto_increment,
2387         PRIMARY KEY  (`id`),
2388         KEY `subtag` (`subtag`)
2389 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2390
2391 --
2392 -- Table structure for table `language_rfc4646_to_iso639`
2393 -- TODO: add suppress_scripts
2394 -- this maps three letter codes defined in iso639.2 back to their
2395 -- two letter equivilents in rfc4646 (LOC maintains iso639+)
2396 --
2397
2398 DROP TABLE IF EXISTS language_rfc4646_to_iso639;
2399 CREATE TABLE language_rfc4646_to_iso639 (
2400         rfc4646_subtag varchar(25),
2401         iso639_2_code varchar(25),
2402         id int(11) NOT NULL auto_increment,
2403         PRIMARY KEY  (`id`),
2404         KEY `rfc4646_subtag` (`rfc4646_subtag`)
2405 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2406
2407 --
2408 -- Table structure for table `language_descriptions`
2409 --
2410
2411 DROP TABLE IF EXISTS language_descriptions;
2412 CREATE TABLE language_descriptions (
2413         subtag varchar(25),
2414         type varchar(25),
2415         lang varchar(25),
2416         description varchar(255),
2417         id int(11) NOT NULL auto_increment,
2418         PRIMARY KEY  (`id`),
2419         KEY `lang` (`lang`),
2420         KEY `subtag_type_lang` (`subtag`, `type`, `lang`)
2421 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2422
2423 --
2424 -- Table structure for table `language_script_bidi`
2425 -- bi-directional support, keyed by script subcode
2426 --
2427
2428 DROP TABLE IF EXISTS language_script_bidi;
2429 CREATE TABLE language_script_bidi (
2430         rfc4646_subtag varchar(25), -- script subtag, Arab, Hebr, etc.
2431         bidi varchar(3), -- rtl ltr
2432         KEY `rfc4646_subtag` (`rfc4646_subtag`)
2433 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2434
2435 --
2436 -- Table structure for table `language_script_mapping`
2437 -- TODO: need to map language subtags to script subtags for detection
2438 -- of bidi when script is not specified (like ar, he)
2439 --
2440
2441 DROP TABLE IF EXISTS language_script_mapping;
2442 CREATE TABLE language_script_mapping (
2443         language_subtag varchar(25),
2444         script_subtag varchar(25),
2445         KEY `language_subtag` (`language_subtag`)
2446 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2447
2448 --
2449 -- Table structure for table `permissions`
2450 --
2451
2452 DROP TABLE IF EXISTS `permissions`;
2453 CREATE TABLE `permissions` (
2454   `module_bit` int(11) NOT NULL DEFAULT 0,
2455   `code` varchar(64) DEFAULT NULL,
2456   `description` varchar(255) DEFAULT NULL,
2457   PRIMARY KEY  (`module_bit`, `code`),
2458   CONSTRAINT `permissions_ibfk_1` FOREIGN KEY (`module_bit`) REFERENCES `userflags` (`bit`)
2459     ON DELETE CASCADE ON UPDATE CASCADE
2460 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2461
2462 --
2463 -- Table structure for table `serialitems`
2464 --
2465
2466 DROP TABLE IF EXISTS `serialitems`;
2467 CREATE TABLE `serialitems` (
2468         `itemnumber` int(11) NOT NULL,
2469         `serialid` int(11) NOT NULL,
2470         UNIQUE KEY `serialitemsidx` (`itemnumber`),
2471         KEY `serialitems_sfk_1` (`serialid`),
2472         CONSTRAINT `serialitems_sfk_1` FOREIGN KEY (`serialid`) REFERENCES `serial` (`serialid`) ON DELETE CASCADE ON UPDATE CASCADE,
2473         CONSTRAINT `serialitems_sfk_2` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE
2474 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2475
2476 --
2477 -- Table structure for table `user_permissions`
2478 --
2479
2480 DROP TABLE IF EXISTS `user_permissions`;
2481 CREATE TABLE `user_permissions` (
2482   `borrowernumber` int(11) NOT NULL DEFAULT 0,
2483   `module_bit` int(11) NOT NULL DEFAULT 0,
2484   `code` varchar(64) DEFAULT NULL,
2485   CONSTRAINT `user_permissions_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`)
2486     ON DELETE CASCADE ON UPDATE CASCADE,
2487   CONSTRAINT `user_permissions_ibfk_2` FOREIGN KEY (`module_bit`, `code`) REFERENCES `permissions` (`module_bit`, `code`)
2488     ON DELETE CASCADE ON UPDATE CASCADE
2489 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2490
2491 --
2492 -- Table structure for table `tmp_holdsqueue`
2493 --
2494
2495 DROP TABLE IF EXISTS `tmp_holdsqueue`;
2496 CREATE TABLE `tmp_holdsqueue` (
2497   `biblionumber` int(11) default NULL,
2498   `itemnumber` int(11) default NULL,
2499   `barcode` varchar(20) default NULL,
2500   `surname` mediumtext NOT NULL,
2501   `firstname` text,
2502   `phone` text,
2503   `borrowernumber` int(11) NOT NULL,
2504   `cardnumber` varchar(16) default NULL,
2505   `reservedate` date default NULL,
2506   `title` mediumtext,
2507   `itemcallnumber` varchar(255) default NULL,
2508   `holdingbranch` varchar(10) default NULL,
2509   `pickbranch` varchar(10) default NULL,
2510   `notes` text,
2511   `item_level_request` tinyint(4) NOT NULL default 0
2512 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2513
2514 --
2515 -- Table structure for table `message_queue`
2516 --
2517
2518 DROP TABLE IF EXISTS `message_queue`;
2519 CREATE TABLE `message_queue` (
2520   `message_id` int(11) NOT NULL auto_increment,
2521   `borrowernumber` int(11) default NULL,
2522   `subject` text,
2523   `content` text,
2524   `metadata` text DEFAULT NULL,
2525   `letter_code` varchar(64) DEFAULT NULL,
2526   `message_transport_type` varchar(20) NOT NULL,
2527   `status` enum('sent','pending','failed','deleted') NOT NULL default 'pending',
2528   `time_queued` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
2529   `to_address` mediumtext,
2530   `from_address` mediumtext,
2531   `content_type` text,
2532   KEY `message_id` (`message_id`),
2533   KEY `borrowernumber` (`borrowernumber`),
2534   KEY `message_transport_type` (`message_transport_type`),
2535   CONSTRAINT `messageq_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2536   CONSTRAINT `messageq_ibfk_2` FOREIGN KEY (`message_transport_type`) REFERENCES `message_transport_types` (`message_transport_type`) ON DELETE RESTRICT ON UPDATE CASCADE
2537 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2538
2539 --
2540 -- Table structure for table `message_transport_types`
2541 --
2542
2543 DROP TABLE IF EXISTS `message_transport_types`;
2544 CREATE TABLE `message_transport_types` (
2545   `message_transport_type` varchar(20) NOT NULL,
2546   PRIMARY KEY  (`message_transport_type`)
2547 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2548
2549 --
2550 -- Table structure for table `message_attributes`
2551 --
2552
2553 DROP TABLE IF EXISTS `message_attributes`;
2554 CREATE TABLE `message_attributes` (
2555   `message_attribute_id` int(11) NOT NULL auto_increment,
2556   `message_name` varchar(40) NOT NULL default '',
2557   `takes_days` tinyint(1) NOT NULL default '0',
2558   PRIMARY KEY  (`message_attribute_id`),
2559   UNIQUE KEY `message_name` (`message_name`)
2560 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2561
2562 --
2563 -- Table structure for table `message_transports`
2564 --
2565
2566 DROP TABLE IF EXISTS `message_transports`;
2567 CREATE TABLE `message_transports` (
2568   `message_attribute_id` int(11) NOT NULL,
2569   `message_transport_type` varchar(20) NOT NULL,
2570   `is_digest` tinyint(1) NOT NULL default '0',
2571   `letter_module` varchar(20) NOT NULL default '',
2572   `letter_code` varchar(20) NOT NULL default '',
2573   `branchcode` varchar(10) NOT NULL default '',
2574   PRIMARY KEY  (`message_attribute_id`,`message_transport_type`,`is_digest`),
2575   KEY `message_transport_type` (`message_transport_type`),
2576   KEY `letter_module` (`letter_module`,`letter_code`),
2577   CONSTRAINT `message_transports_ibfk_1` FOREIGN KEY (`message_attribute_id`) REFERENCES `message_attributes` (`message_attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
2578   CONSTRAINT `message_transports_ibfk_2` FOREIGN KEY (`message_transport_type`) REFERENCES `message_transport_types` (`message_transport_type`) ON DELETE CASCADE ON UPDATE CASCADE,
2579   CONSTRAINT `message_transports_ibfk_3` FOREIGN KEY (`letter_module`, `letter_code`, `branchcode`) REFERENCES `letter` (`module`, `code`, `branchcode`) ON DELETE CASCADE ON UPDATE CASCADE
2580 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2581
2582 --
2583 -- Table structure for table `borrower_files`
2584 --
2585
2586 DROP TABLE IF EXISTS `borrower_files`;
2587 CREATE TABLE IF NOT EXISTS `borrower_files` ( -- files attached to the patron/borrower record
2588   `file_id` int(11) NOT NULL AUTO_INCREMENT, -- unique key
2589   `borrowernumber` int(11) NOT NULL, -- foreign key linking to the patron via the borrowernumber
2590   `file_name` varchar(255) NOT NULL, -- file name
2591   `file_type` varchar(255) NOT NULL, -- type of file
2592   `file_description` varchar(255) DEFAULT NULL, -- description given to the file
2593   `file_content` longblob NOT NULL, -- the file
2594   `date_uploaded` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, -- date and time the file was added
2595   PRIMARY KEY (`file_id`),
2596   KEY `borrowernumber` (`borrowernumber`),
2597   CONSTRAINT borrower_files_ibfk_1 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE
2598 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2599
2600 --
2601 -- Table structure for table `borrower_message_preferences`
2602 --
2603
2604 DROP TABLE IF EXISTS `borrower_message_preferences`;
2605 CREATE TABLE `borrower_message_preferences` (
2606   `borrower_message_preference_id` int(11) NOT NULL auto_increment,
2607   `borrowernumber` int(11) default NULL,
2608   `categorycode` varchar(10) default NULL,
2609   `message_attribute_id` int(11) default '0',
2610   `days_in_advance` int(11) default '0',
2611   `wants_digest` tinyint(1) NOT NULL default '0',
2612   PRIMARY KEY  (`borrower_message_preference_id`),
2613   KEY `borrowernumber` (`borrowernumber`),
2614   KEY `categorycode` (`categorycode`),
2615   KEY `message_attribute_id` (`message_attribute_id`),
2616   CONSTRAINT `borrower_message_preferences_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2617   CONSTRAINT `borrower_message_preferences_ibfk_2` FOREIGN KEY (`message_attribute_id`) REFERENCES `message_attributes` (`message_attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
2618   CONSTRAINT `borrower_message_preferences_ibfk_3` FOREIGN KEY (`categorycode`) REFERENCES `categories` (`categorycode`) ON DELETE CASCADE ON UPDATE CASCADE
2619 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2620
2621 --
2622 -- Table structure for table `borrower_message_transport_preferences`
2623 --
2624
2625 DROP TABLE IF EXISTS `borrower_message_transport_preferences`;
2626 CREATE TABLE `borrower_message_transport_preferences` (
2627   `borrower_message_preference_id` int(11) NOT NULL default '0',
2628   `message_transport_type` varchar(20) NOT NULL default '0',
2629   PRIMARY KEY  (`borrower_message_preference_id`,`message_transport_type`),
2630   KEY `message_transport_type` (`message_transport_type`),
2631   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,
2632   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
2633 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2634
2635 --
2636 -- Table structure for the table branch_transfer_limits
2637 --
2638
2639 DROP TABLE IF EXISTS `branch_transfer_limits`;
2640 CREATE TABLE branch_transfer_limits (
2641     limitId int(8) NOT NULL auto_increment,
2642     toBranch varchar(10) NOT NULL,
2643     fromBranch varchar(10) NOT NULL,
2644     itemtype varchar(10) NULL,
2645     ccode varchar(10) NULL,
2646     PRIMARY KEY  (limitId)
2647 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2648
2649 --
2650 -- Table structure for table `item_circulation_alert_preferences`
2651 --
2652
2653 DROP TABLE IF EXISTS `item_circulation_alert_preferences`;
2654 CREATE TABLE `item_circulation_alert_preferences` (
2655   `id` int(11) NOT NULL auto_increment,
2656   `branchcode` varchar(10) NOT NULL,
2657   `categorycode` varchar(10) NOT NULL,
2658   `item_type` varchar(10) NOT NULL,
2659   `notification` varchar(16) NOT NULL,
2660   PRIMARY KEY  (`id`),
2661   KEY `branchcode` (`branchcode`,`categorycode`,`item_type`, `notification`)
2662 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2663
2664 --
2665 -- Table structure for table `messages`
2666 --
2667 DROP TABLE IF EXISTS `messages`;
2668 CREATE TABLE `messages` ( -- circulation messages left via the patron's check out screen
2669   `message_id` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
2670   `borrowernumber` int(11) NOT NULL, -- foreign key linking this message to the borrowers table
2671   `branchcode` varchar(10) default NULL, -- foreign key linking the message to the branches table
2672   `message_type` varchar(1) NOT NULL, -- whether the message is for the librarians (L) or the patron (B)
2673   `message` text NOT NULL, -- the text of the message
2674   `message_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, -- the date and time the message was written
2675   PRIMARY KEY (`message_id`)
2676 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2677
2678 --
2679 -- Table structure for table `accountlines`
2680 --
2681
2682 DROP TABLE IF EXISTS `accountlines`;
2683 CREATE TABLE `accountlines` (
2684   `accountlines_id` int(11) NOT NULL AUTO_INCREMENT,
2685   `borrowernumber` int(11) NOT NULL default 0,
2686   `accountno` smallint(6) NOT NULL default 0,
2687   `itemnumber` int(11) default NULL,
2688   `date` date default NULL,
2689   `amount` decimal(28,6) default NULL,
2690   `description` mediumtext,
2691   `dispute` mediumtext,
2692   `accounttype` varchar(5) default NULL,
2693   `amountoutstanding` decimal(28,6) default NULL,
2694   `lastincrement` decimal(28,6) default NULL,
2695   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
2696   `notify_id` int(11) NOT NULL default 0,
2697   `notify_level` int(2) NOT NULL default 0,
2698   `note` text NULL default NULL,
2699   `manager_id` int(11) NULL,
2700   PRIMARY KEY (`accountlines_id`),
2701   KEY `acctsborridx` (`borrowernumber`),
2702   KEY `timeidx` (`timestamp`),
2703   KEY `itemnumber` (`itemnumber`),
2704   CONSTRAINT `accountlines_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE,
2705   CONSTRAINT `accountlines_ibfk_2` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE SET NULL ON UPDATE SET NULL
2706 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2707
2708 --
2709 -- Table structure for table `accountoffsets`
2710 --
2711
2712 DROP TABLE IF EXISTS `accountoffsets`;
2713 CREATE TABLE `accountoffsets` (
2714   `borrowernumber` int(11) NOT NULL default 0,
2715   `accountno` smallint(6) NOT NULL default 0,
2716   `offsetaccount` smallint(6) NOT NULL default 0,
2717   `offsetamount` decimal(28,6) default NULL,
2718   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
2719   CONSTRAINT `accountoffsets_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE
2720 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2721
2722 --
2723 -- Table structure for table `action_logs`
2724 --
2725
2726 DROP TABLE IF EXISTS `action_logs`;
2727 CREATE TABLE `action_logs` ( -- logs of actions taken in Koha (requires that the logs be turned on)
2728   `action_id` int(11) NOT NULL auto_increment, -- unique identifier for each action
2729   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time the action took place
2730   `user` int(11) NOT NULL default 0, -- the staff member who performed the action (borrowers.borrowernumber)
2731   `module` text, -- the module this action was taken against
2732   `action` text, -- the action (includes things like DELETED, ADDED, MODIFY, etc)
2733   `object` int(11) default NULL, -- the object that the action was taken against (could be a borrowernumber, itemnumber, etc)
2734   `info` text, -- information about the action (usually includes SQL statement)
2735   PRIMARY KEY (`action_id`),
2736   KEY `timestamp_idx` (`timestamp`),
2737   KEY `user_idx` (`user`),
2738   KEY `module_idx` (`module`(255)),
2739   KEY `action_idx` (`action`(255)),
2740   KEY `object_idx` (`object`),
2741   KEY `info_idx` (`info`(255))
2742 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2743
2744 --
2745 -- Table structure for table `alert`
2746 --
2747
2748 DROP TABLE IF EXISTS `alert`;
2749 CREATE TABLE `alert` (
2750   `alertid` int(11) NOT NULL auto_increment,
2751   `borrowernumber` int(11) NOT NULL default 0,
2752   `type` varchar(10) NOT NULL default '',
2753   `externalid` varchar(20) NOT NULL default '',
2754   PRIMARY KEY  (`alertid`),
2755   KEY `borrowernumber` (`borrowernumber`),
2756   KEY `type` (`type`,`externalid`)
2757 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2758
2759 --
2760 -- Table structure for table `aqbasketgroups`
2761 --
2762
2763 DROP TABLE IF EXISTS `aqbasketgroups`;
2764 CREATE TABLE `aqbasketgroups` (
2765   `id` int(11) NOT NULL auto_increment,
2766   `name` varchar(50) default NULL,
2767   `closed` tinyint(1) default NULL,
2768   `booksellerid` int(11) NOT NULL,
2769   `deliveryplace` varchar(10) default NULL,
2770   `freedeliveryplace` text default NULL,
2771   `deliverycomment` varchar(255) default NULL,
2772   `billingplace` varchar(10) default NULL,
2773   PRIMARY KEY  (`id`),
2774   KEY `booksellerid` (`booksellerid`),
2775   CONSTRAINT `aqbasketgroups_ibfk_1` FOREIGN KEY (`booksellerid`) REFERENCES `aqbooksellers` (`id`) ON UPDATE CASCADE ON DELETE CASCADE
2776 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2777
2778 --
2779 -- Table structure for table `aqbasket`
2780 --
2781
2782 DROP TABLE IF EXISTS `aqbasket`;
2783 CREATE TABLE `aqbasket` ( -- stores data about baskets in acquisitions
2784   `basketno` int(11) NOT NULL auto_increment, -- primary key, Koha defined number
2785   `basketname` varchar(50) default NULL, -- name given to the basket at creation
2786   `note` mediumtext, -- the internal note added at basket creation
2787   `booksellernote` mediumtext, -- the vendor note added at basket creation
2788   `contractnumber` int(11), -- links this basket to the aqcontract table (aqcontract.contractnumber)
2789   `creationdate` date default NULL, -- the date the basket was created
2790   `closedate` date default NULL, -- the date the basket was closed
2791   `booksellerid` int(11) NOT NULL default 1, -- the Koha assigned ID for the vendor (aqbooksellers.id)
2792   `authorisedby` varchar(10) default NULL, -- the borrowernumber of the person who created the basket
2793   `booksellerinvoicenumber` mediumtext, -- appears to always be NULL
2794   `basketgroupid` int(11), -- links this basket to its group (aqbasketgroups.id)
2795   `deliveryplace` varchar(10) default NULL, -- basket delivery place
2796   `billingplace` varchar(10) default NULL, -- basket billing place
2797   branch varchar(10) default NULL, -- basket branch
2798   PRIMARY KEY  (`basketno`),
2799   KEY `booksellerid` (`booksellerid`),
2800   KEY `basketgroupid` (`basketgroupid`),
2801   KEY `contractnumber` (`contractnumber`),
2802   CONSTRAINT `aqbasket_ibfk_1` FOREIGN KEY (`booksellerid`) REFERENCES `aqbooksellers` (`id`) ON UPDATE CASCADE,
2803   CONSTRAINT `aqbasket_ibfk_2` FOREIGN KEY (`contractnumber`) REFERENCES `aqcontract` (`contractnumber`),
2804   CONSTRAINT `aqbasket_ibfk_3` FOREIGN KEY (`basketgroupid`) REFERENCES `aqbasketgroups` (`id`) ON UPDATE CASCADE,
2805   CONSTRAINT aqbasket_ibfk_4 FOREIGN KEY (branch) REFERENCES branches (branchcode) ON UPDATE CASCADE ON DELETE SET NULL
2806 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2807
2808 --
2809 -- Table structure for table aqbasketusers
2810 --
2811
2812 DROP TABLE IF EXISTS aqbasketusers;
2813 CREATE TABLE aqbasketusers (
2814   basketno int(11) NOT NULL,
2815   borrowernumber int(11) NOT NULL,
2816   PRIMARY KEY (basketno,borrowernumber),
2817   CONSTRAINT aqbasketusers_ibfk_1 FOREIGN KEY (basketno) REFERENCES aqbasket (basketno) ON UPDATE CASCADE ON DELETE CASCADE,
2818   CONSTRAINT aqbasketusers_ibfk_2 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON UPDATE CASCADE ON DELETE CASCADE
2819 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2820
2821 --
2822 -- Table structure for table `aqbooksellers`
2823 --
2824
2825 DROP TABLE IF EXISTS `aqbooksellers`;
2826 CREATE TABLE `aqbooksellers` ( -- information about the vendors listed in acquisitions
2827   `id` int(11) NOT NULL auto_increment, -- primary key and unique identifier assigned by Koha
2828   `name` mediumtext NOT NULL, -- vendor name
2829   `address1` mediumtext, -- first line of vendor physical address
2830   `address2` mediumtext, -- second line of vendor physical address
2831   `address3` mediumtext, -- third line of vendor physical address
2832   `address4` mediumtext, -- fourth line of vendor physical address
2833   `phone` varchar(30) default NULL, -- vendor phone number
2834   `accountnumber` mediumtext, -- unused in Koha
2835   `othersupplier` mediumtext,  -- unused in Koha
2836   `currency` varchar(3) NOT NULL default '', -- unused in Koha
2837   `booksellerfax` mediumtext, -- vendor fax number
2838   `notes` mediumtext, -- order notes
2839   `bookselleremail` mediumtext, -- vendor email
2840   `booksellerurl` mediumtext, -- unused in Koha
2841   `contact` varchar(100) default NULL, -- name of contact at vendor
2842   `postal` mediumtext, -- vendor postal address (all lines)
2843   `url` varchar(255) default NULL, -- vendor web address
2844   `contpos` varchar(100) default NULL, -- contact person's position
2845   `contphone` varchar(100) default NULL, -- contact's phone number
2846   `contfax` varchar(100) default NULL,  -- contact's fax number
2847   `contaltphone` varchar(100) default NULL, -- contact's alternate phone number
2848   `contemail` varchar(100) default NULL, -- contact's email address
2849   `contnotes` mediumtext, -- notes related to the contact
2850   `active` tinyint(4) default NULL, -- is this vendor active (1 for yes, 0 for no)
2851   `listprice` varchar(10) default NULL, -- currency code for list prices
2852   `invoiceprice` varchar(10) default NULL, -- currency code for invoice prices
2853   `gstreg` tinyint(4) default NULL, -- is your library charged tax (1 for yes, 0 for no)
2854   `listincgst` tinyint(4) default NULL, -- is tax included in list prices (1 for yes, 0 for no)
2855   `invoiceincgst` tinyint(4) default NULL, -- is tax included in invoice prices (1 for yes, 0 for no)
2856   `gstrate` decimal(6,4) default NULL, -- the tax rate the library is charged
2857   `discount` float(6,4) default NULL, -- discount offered on all items ordered from this vendor
2858   `fax` varchar(50) default NULL, -- vendor fax number
2859   deliverytime int(11) default NULL, -- vendor delivery time
2860   PRIMARY KEY  (`id`),
2861   KEY `listprice` (`listprice`),
2862   KEY `invoiceprice` (`invoiceprice`),
2863   CONSTRAINT `aqbooksellers_ibfk_1` FOREIGN KEY (`listprice`) REFERENCES `currency` (`currency`) ON DELETE CASCADE ON UPDATE CASCADE,
2864   CONSTRAINT `aqbooksellers_ibfk_2` FOREIGN KEY (`invoiceprice`) REFERENCES `currency` (`currency`) ON DELETE CASCADE ON UPDATE CASCADE
2865 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2866
2867 --
2868 -- Table structure for table `aqbudgets`
2869 --
2870
2871 DROP TABLE IF EXISTS `aqbudgets`;
2872 CREATE TABLE `aqbudgets` ( -- information related to Funds
2873   `budget_id` int(11) NOT NULL auto_increment, -- primary key and unique number assigned to each fund by Koha
2874   `budget_parent_id` int(11) default NULL, -- if this fund is a child of another this will include the parent id (aqbudgets.budget_id)
2875   `budget_code` varchar(30) default NULL, -- code assigned to the fund by the user
2876   `budget_name` varchar(80) default NULL, -- name assigned to the fund by the user
2877   `budget_branchcode` varchar(10) default NULL, -- branch that this fund belongs to (branches.branchcode)
2878   `budget_amount` decimal(28,6) NULL default '0.00', -- total amount for this fund
2879   `budget_encumb` decimal(28,6) NULL default '0.00', -- not used in the code
2880   `budget_expend` decimal(28,6) NULL default '0.00', -- not used in the code
2881   `budget_notes` mediumtext, -- notes related to this fund
2882   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this fund was last touched (created or modified)
2883   `budget_period_id` int(11) default NULL, -- id of the budget that this fund belongs to (aqbudgetperiods.budget_period_id)
2884   `sort1_authcat` varchar(80) default NULL, -- statistical category for this fund
2885   `sort2_authcat` varchar(80) default NULL, -- second statistical category for this fund
2886   `budget_owner_id` int(11) default NULL, -- borrowernumber of the person who owns this fund (borrowers.borrowernumber)
2887   `budget_permission` int(1) default '0', -- level of permission for this fund (used only by the owner, only by the library, or anyone)
2888   PRIMARY KEY  (`budget_id`)
2889 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2890
2891 --
2892 -- Table structure for table aqbudgetborrowers
2893 --
2894
2895 DROP TABLE IF EXISTS aqbudgetborrowers;
2896 CREATE TABLE aqbudgetborrowers (
2897   budget_id int(11) NOT NULL,
2898   borrowernumber int(11) NOT NULL,
2899   PRIMARY KEY (budget_id, borrowernumber),
2900   CONSTRAINT aqbudgetborrowers_ibfk_1 FOREIGN KEY (budget_id)
2901     REFERENCES aqbudgets (budget_id)
2902     ON DELETE CASCADE ON UPDATE CASCADE,
2903   CONSTRAINT aqbudgetborrowers_ibfk_2 FOREIGN KEY (borrowernumber)
2904     REFERENCES borrowers (borrowernumber)
2905     ON DELETE CASCADE ON UPDATE CASCADE
2906 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2907
2908 --
2909 -- Table structure for table `aqbudgetperiods`
2910 --
2911
2912
2913 DROP TABLE IF EXISTS `aqbudgetperiods`;
2914 CREATE TABLE `aqbudgetperiods` ( -- information related to Budgets
2915   `budget_period_id` int(11) NOT NULL auto_increment, -- primary key and unique number assigned by Koha
2916   `budget_period_startdate` date NOT NULL, -- date when the budget starts
2917   `budget_period_enddate` date NOT NULL, -- date when the budget ends
2918   `budget_period_active` tinyint(1) default '0', -- whether this budget is active or not (1 for yes, 0 for no)
2919   `budget_period_description` mediumtext, -- description assigned to this budget
2920   `budget_period_total` decimal(28,6), -- total amount available in this budget
2921   `budget_period_locked` tinyint(1) default NULL, -- whether this budget is locked or not (1 for yes, 0 for no)
2922   `sort1_authcat` varchar(10) default NULL, -- statistical category for this budget
2923   `sort2_authcat` varchar(10) default NULL, -- second statistical category for this budget
2924   PRIMARY KEY  (`budget_period_id`)
2925 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2926
2927 --
2928 -- Table structure for table `aqbudgets_planning`
2929 --
2930
2931 DROP TABLE IF EXISTS `aqbudgets_planning`;
2932 CREATE TABLE `aqbudgets_planning` (
2933   `plan_id` int(11) NOT NULL auto_increment,
2934   `budget_id` int(11) NOT NULL,
2935   `budget_period_id` int(11) NOT NULL,
2936   `estimated_amount` decimal(28,6) default NULL,
2937   `authcat` varchar(30) NOT NULL,
2938   `authvalue` varchar(30) NOT NULL,
2939   `display` tinyint(1) DEFAULT 1,
2940   PRIMARY KEY  (`plan_id`),
2941   CONSTRAINT `aqbudgets_planning_ifbk_1` FOREIGN KEY (`budget_id`) REFERENCES `aqbudgets` (`budget_id`) ON DELETE CASCADE ON UPDATE CASCADE
2942 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2943
2944 --
2945 -- Table structure for table 'aqcontract'
2946 --
2947
2948 DROP TABLE IF EXISTS `aqcontract`;
2949 CREATE TABLE `aqcontract` (
2950   `contractnumber` int(11) NOT NULL auto_increment,
2951   `contractstartdate` date default NULL,
2952   `contractenddate` date default NULL,
2953   `contractname` varchar(50) default NULL,
2954   `contractdescription` mediumtext,
2955   `booksellerid` int(11) not NULL,
2956   PRIMARY KEY  (`contractnumber`),
2957   CONSTRAINT `booksellerid_fk1` FOREIGN KEY (`booksellerid`)
2958        REFERENCES `aqbooksellers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
2959 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
2960
2961 --
2962 -- Table structure for table `aqorders`
2963 --
2964
2965 DROP TABLE IF EXISTS `aqorders`;
2966 CREATE TABLE `aqorders` ( -- information related to the basket line items
2967   `ordernumber` int(11) NOT NULL auto_increment, -- primary key and unique identifier assigned by Koha to each line
2968   `biblionumber` int(11) default NULL, -- links the order to the biblio being ordered (biblio.biblionumber)
2969   `entrydate` date default NULL, -- the date the bib was added to the basket
2970   `quantity` smallint(6) default NULL, -- the quantity ordered
2971   `currency` varchar(3) default NULL, -- the currency used for the purchase
2972   `listprice` decimal(28,6) default NULL, -- the vendor price for this line item
2973   `totalamount` decimal(28,6) default NULL, -- not used? always NULL
2974   `datereceived` date default NULL, -- the date this order was received
2975   invoiceid int(11) default NULL, -- id of invoice
2976   `freight` decimal(28,6) default NULL, -- shipping costs (not used)
2977   `unitprice` decimal(28,6) default NULL, -- the actual cost entered when receiving this line item
2978   `quantityreceived` smallint(6) NOT NULL default 0, -- the quantity that have been received so far
2979   `cancelledby` varchar(10) default NULL, -- not used? always NULL
2980   `datecancellationprinted` date default NULL, -- the date the line item was deleted
2981   `notes` mediumtext, -- notes related to this order line
2982   `supplierreference` mediumtext, -- not used? always NULL
2983   `purchaseordernumber` mediumtext, -- not used? always NULL
2984   `basketno` int(11) default NULL, -- links this order line to a specific basket (aqbasket.basketno)
2985   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this order line was last modified
2986   `rrp` decimal(13,2) default NULL, -- the replacement cost for this line item
2987   `ecost` decimal(13,2) default NULL, -- the estimated cost for this line item
2988   `gstrate` decimal(6,4) default NULL, -- the tax rate for this line item
2989   `discount` float(6,4) default NULL, -- the discount for this line item
2990   `budget_id` int(11) NOT NULL, -- the fund this order goes against (aqbudgets.budget_id)
2991   `budgetgroup_id` int(11) NOT NULL, -- not used? always zero
2992   `budgetdate` date default NULL, -- not used? always NULL
2993   `sort1` varchar(80) default NULL, -- statistical field
2994   `sort2` varchar(80) default NULL, -- second statistical field
2995   `sort1_authcat` varchar(10) default NULL,
2996   `sort2_authcat` varchar(10) default NULL,
2997   `uncertainprice` tinyint(1), -- was this price uncertain (1 for yes, 0 for no)
2998   `claims_count` int(11) default 0, -- count of claim letters generated
2999   `claimed_date` date default NULL, -- last date a claim was generated
3000   `subscriptionid` int(11) default NULL, -- links this order line to a subscription (subscription.subscriptionid)
3001   parent_ordernumber int(11) default NULL, -- ordernumber of parent order line, or same as ordernumber if no parent
3002   `orderstatus` varchar(16) default 'new', -- the current status for this line item. Can be 'new', 'ordered', 'partial', 'complete' or 'cancelled'
3003   PRIMARY KEY  (`ordernumber`),
3004   KEY `basketno` (`basketno`),
3005   KEY `biblionumber` (`biblionumber`),
3006   KEY `budget_id` (`budget_id`),
3007   CONSTRAINT `aqorders_ibfk_1` FOREIGN KEY (`basketno`) REFERENCES `aqbasket` (`basketno`) ON DELETE CASCADE ON UPDATE CASCADE,
3008   CONSTRAINT `aqorders_ibfk_2` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE SET NULL ON UPDATE CASCADE,
3009   CONSTRAINT aqorders_ibfk_3 FOREIGN KEY (invoiceid) REFERENCES aqinvoices (invoiceid) ON DELETE SET NULL ON UPDATE CASCADE,
3010   CONSTRAINT `aqorders_subscriptionid` FOREIGN KEY (`subscriptionid`) REFERENCES `subscription` (`subscriptionid`) ON DELETE CASCADE ON UPDATE CASCADE
3011 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3012
3013
3014 --
3015 -- Table structure for table `aqorders_items`
3016 --
3017
3018 DROP TABLE IF EXISTS `aqorders_items`;
3019 CREATE TABLE `aqorders_items` ( -- information on items entered in the acquisitions process
3020   `ordernumber` int(11) NOT NULL, -- the order this item is attached to (aqorders.ordernumber)
3021   `itemnumber` int(11) NOT NULL, -- the item number for this item (items.itemnumber)
3022   `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this order item was last touched
3023   PRIMARY KEY  (`itemnumber`),
3024   KEY `ordernumber` (`ordernumber`),
3025   CONSTRAINT aqorders_items_ibfk_1 FOREIGN KEY (ordernumber) REFERENCES aqorders (ordernumber) ON DELETE CASCADE ON UPDATE CASCADE
3026 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3027
3028
3029 --
3030 -- Table structure for table aqorders_transfers
3031 --
3032
3033 DROP TABLE IF EXISTS aqorders_transfers;
3034 CREATE TABLE aqorders_transfers (
3035   ordernumber_from int(11) NULL,
3036   ordernumber_to int(11) NULL,
3037   timestamp timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
3038   UNIQUE KEY ordernumber_from (ordernumber_from),
3039   UNIQUE KEY ordernumber_to (ordernumber_to),
3040   CONSTRAINT aqorders_transfers_ordernumber_from FOREIGN KEY (ordernumber_from) REFERENCES aqorders (ordernumber) ON DELETE SET NULL ON UPDATE CASCADE,
3041   CONSTRAINT aqorders_transfers_ordernumber_to FOREIGN KEY (ordernumber_to) REFERENCES aqorders (ordernumber) ON DELETE SET NULL ON UPDATE CASCADE
3042 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3043
3044 --
3045 -- Table structure for table aqinvoices
3046 --
3047
3048 DROP TABLE IF EXISTS aqinvoices;
3049 CREATE TABLE aqinvoices (
3050   invoiceid int(11) NOT NULL AUTO_INCREMENT,    -- ID of the invoice, primary key
3051   invoicenumber mediumtext NOT NULL,    -- Name of invoice
3052   booksellerid int(11) NOT NULL,    -- foreign key to aqbooksellers
3053   shipmentdate date default NULL,   -- date of shipment
3054   billingdate date default NULL,    -- date of billing
3055   closedate date default NULL,  -- invoice close date, NULL means the invoice is open
3056   shipmentcost decimal(28,6) default NULL,  -- shipment cost
3057   shipmentcost_budgetid int(11) default NULL,   -- foreign key to aqbudgets, link the shipment cost to a budget
3058   PRIMARY KEY (invoiceid),
3059   CONSTRAINT aqinvoices_fk_aqbooksellerid FOREIGN KEY (booksellerid) REFERENCES aqbooksellers (id) ON DELETE CASCADE ON UPDATE CASCADE,
3060   CONSTRAINT aqinvoices_fk_shipmentcost_budgetid FOREIGN KEY (shipmentcost_budgetid) REFERENCES aqbudgets (budget_id) ON DELETE SET NULL ON UPDATE CASCADE
3061 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3062
3063
3064 --
3065 -- Table structure for table `fieldmapping`
3066 --
3067
3068 DROP TABLE IF EXISTS `fieldmapping`;
3069 CREATE TABLE `fieldmapping` ( -- koha to keyword mapping
3070   `id` int(11) NOT NULL auto_increment, -- unique identifier assigned by Koha
3071   `field` varchar(255) NOT NULL, -- keyword to be mapped to (ex. subtitle)
3072   `frameworkcode` char(4) NOT NULL default '', -- foreign key from the biblio_framework table to link this mapping to a specific framework
3073   `fieldcode` char(3) NOT NULL, -- marc field number to map to this keyword
3074   `subfieldcode` char(1) NOT NULL, -- marc subfield associated with the fieldcode to map to this keyword
3075   PRIMARY KEY  (`id`)
3076 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3077
3078 --
3079 -- Table structure for table `transport_cost`
3080 --
3081
3082 DROP TABLE IF EXISTS transport_cost;
3083 CREATE TABLE transport_cost (
3084       frombranch varchar(10) NOT NULL,
3085       tobranch varchar(10) NOT NULL,
3086       cost decimal(6,2) NOT NULL,
3087       disable_transfer tinyint(1) NOT NULL DEFAULT 0,
3088       CHECK ( frombranch <> tobranch ), -- a dud check, mysql does not support that
3089       PRIMARY KEY (frombranch, tobranch),
3090       CONSTRAINT transport_cost_ibfk_1 FOREIGN KEY (frombranch) REFERENCES branches (branchcode) ON DELETE CASCADE ON UPDATE CASCADE,
3091       CONSTRAINT transport_cost_ibfk_2 FOREIGN KEY (tobranch) REFERENCES branches (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE
3092 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3093
3094 --
3095 -- Table structure for table `biblioimages`
3096 --
3097
3098 DROP TABLE IF EXISTS `biblioimages`;
3099
3100 CREATE TABLE `biblioimages` ( -- local cover images
3101  `imagenumber` int(11) NOT NULL AUTO_INCREMENT, -- unique identifier for the image
3102  `biblionumber` int(11) NOT NULL, -- foreign key from biblio table to link to biblionumber
3103  `mimetype` varchar(15) NOT NULL, -- image type
3104  `imagefile` mediumblob NOT NULL, -- image file contents
3105  `thumbnail` mediumblob NOT NULL, -- thumbnail file contents
3106  PRIMARY KEY (`imagenumber`),
3107  CONSTRAINT `bibliocoverimage_fk1` FOREIGN KEY (`biblionumber`) REFERENCES `biblio` (`biblionumber`) ON DELETE CASCADE ON UPDATE CASCADE
3108 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3109
3110 --
3111 -- Table structure for table `social_data`
3112 --
3113
3114 DROP TABLE IF EXISTS `social_data`;
3115 CREATE TABLE IF NOT EXISTS `social_data` (
3116   `isbn` VARCHAR(30),
3117   `num_critics` INT,
3118   `num_critics_pro` INT,
3119   `num_quotations` INT,
3120   `num_videos` INT,
3121   `score_avg` DECIMAL(5,2),
3122   `num_scores` INT,
3123   PRIMARY KEY  (`isbn`)
3124 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3125
3126 --
3127 -- 'Ratings' table. This tracks the star ratings set by borrowers.
3128 --
3129
3130 DROP TABLE IF EXISTS ratings;
3131 CREATE TABLE ratings ( -- information related to the star ratings in the OPAC
3132     borrowernumber int(11) NOT NULL, -- the borrowernumber of the patron who left this rating (borrowers.borrowernumber)
3133     biblionumber int(11) NOT NULL, -- the biblio this rating is for (biblio.biblionumber)
3134     rating_value tinyint(1) NOT NULL, -- the rating, from 1 to 5
3135     timestamp timestamp NOT NULL default CURRENT_TIMESTAMP,
3136     PRIMARY KEY  (borrowernumber,biblionumber),
3137     CONSTRAINT ratings_ibfk_1 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE,
3138     CONSTRAINT ratings_ibfk_2 FOREIGN KEY (biblionumber) REFERENCES biblio (biblionumber) ON DELETE CASCADE ON UPDATE CASCADE
3139 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3140
3141 --
3142 -- Table structure for table `quotes`
3143 --
3144
3145 DROP TABLE IF EXISTS quotes;
3146 CREATE TABLE `quotes` ( -- data for the quote of the day feature
3147   `id` int(11) NOT NULL AUTO_INCREMENT, -- unique id for the quote
3148   `source` text DEFAULT NULL, -- source/credit for the quote
3149   `text` mediumtext NOT NULL, -- text of the quote
3150   `timestamp` datetime NOT NULL, -- date and time that the quote last appeared in the opac
3151   PRIMARY KEY (`id`)
3152 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3153
3154 --
3155 -- Table structure for table categories_branches
3156 --
3157
3158 DROP TABLE IF EXISTS categories_branches;
3159 CREATE TABLE categories_branches( -- association table between categories and branches
3160     categorycode VARCHAR(10),
3161     branchcode VARCHAR(10),
3162     FOREIGN KEY (categorycode) REFERENCES categories(categorycode) ON DELETE CASCADE,
3163     FOREIGN KEY (branchcode) REFERENCES branches(branchcode) ON DELETE CASCADE
3164 ) ENGINE=INNODB DEFAULT CHARSET=utf8;
3165
3166 --
3167 -- Table structure for table authorised_values_branches
3168 --
3169
3170 DROP TABLE IF EXISTS authorised_values_branches;
3171 CREATE TABLE authorised_values_branches( -- association table between authorised_values and branches
3172     av_id INTEGER,
3173     branchcode VARCHAR(10),
3174     FOREIGN KEY (av_id) REFERENCES authorised_values(id) ON DELETE CASCADE,
3175     FOREIGN KEY (branchcode) REFERENCES branches(branchcode) ON DELETE CASCADE
3176 ) ENGINE=INNODB DEFAULT CHARSET=utf8;
3177
3178
3179 --
3180 -- Table structure for table borrower_attribute_types_branches
3181 --
3182
3183 DROP TABLE IF EXISTS borrower_attribute_types_branches;
3184 CREATE TABLE borrower_attribute_types_branches( -- association table between borrower_attribute_types and branches
3185     bat_code VARCHAR(10),
3186     b_branchcode VARCHAR(10),
3187     FOREIGN KEY (bat_code) REFERENCES borrower_attribute_types(code) ON DELETE CASCADE,
3188     FOREIGN KEY (b_branchcode) REFERENCES branches(branchcode) ON DELETE CASCADE
3189 ) ENGINE=INNODB DEFAULT CHARSET=utf8;
3190
3191 --
3192 -- Table structure for table `borrower_modifications`
3193 --
3194
3195 CREATE TABLE IF NOT EXISTS `borrower_modifications` (
3196   `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
3197   `verification_token` varchar(255) NOT NULL DEFAULT '',
3198   `borrowernumber` int(11) NOT NULL DEFAULT '0',
3199   `cardnumber` varchar(16) DEFAULT NULL,
3200   `surname` mediumtext,
3201   `firstname` text,
3202   `title` mediumtext,
3203   `othernames` mediumtext,
3204   `initials` text,
3205   `streetnumber` varchar(10) DEFAULT NULL,
3206   `streettype` varchar(50) DEFAULT NULL,
3207   `address` mediumtext,
3208   `address2` text,
3209   `city` mediumtext,
3210   `state` text,
3211   `zipcode` varchar(25) DEFAULT NULL,
3212   `country` text,
3213   `email` mediumtext,
3214   `phone` text,
3215   `mobile` varchar(50) DEFAULT NULL,
3216   `fax` mediumtext,
3217   `emailpro` text,
3218   `phonepro` text,
3219   `B_streetnumber` varchar(10) DEFAULT NULL,
3220   `B_streettype` varchar(50) DEFAULT NULL,
3221   `B_address` varchar(100) DEFAULT NULL,
3222   `B_address2` text,
3223   `B_city` mediumtext,
3224   `B_state` text,
3225   `B_zipcode` varchar(25) DEFAULT NULL,
3226   `B_country` text,
3227   `B_email` text,
3228   `B_phone` mediumtext,
3229   `dateofbirth` date DEFAULT NULL,
3230   `branchcode` varchar(10) DEFAULT NULL,
3231   `categorycode` varchar(10) DEFAULT NULL,
3232   `dateenrolled` date DEFAULT NULL,
3233   `dateexpiry` date DEFAULT NULL,
3234   `gonenoaddress` tinyint(1) DEFAULT NULL,
3235   `lost` tinyint(1) DEFAULT NULL,
3236   `debarred` date DEFAULT NULL,
3237   `debarredcomment` varchar(255) DEFAULT NULL,
3238   `contactname` mediumtext,
3239   `contactfirstname` text,
3240   `contacttitle` text,
3241   `guarantorid` int(11) DEFAULT NULL,
3242   `borrowernotes` mediumtext,
3243   `relationship` varchar(100) DEFAULT NULL,
3244   `ethnicity` varchar(50) DEFAULT NULL,
3245   `ethnotes` varchar(255) DEFAULT NULL,
3246   `sex` varchar(1) DEFAULT NULL,
3247   `password` varchar(30) DEFAULT NULL,
3248   `flags` int(11) DEFAULT NULL,
3249   `userid` varchar(75) DEFAULT NULL,
3250   `opacnote` mediumtext,
3251   `contactnote` varchar(255) DEFAULT NULL,
3252   `sort1` varchar(80) DEFAULT NULL,
3253   `sort2` varchar(80) DEFAULT NULL,
3254   `altcontactfirstname` varchar(255) DEFAULT NULL,
3255   `altcontactsurname` varchar(255) DEFAULT NULL,
3256   `altcontactaddress1` varchar(255) DEFAULT NULL,
3257   `altcontactaddress2` varchar(255) DEFAULT NULL,
3258   `altcontactaddress3` varchar(255) DEFAULT NULL,
3259   `altcontactstate` text,
3260   `altcontactzipcode` varchar(50) DEFAULT NULL,
3261   `altcontactcountry` text,
3262   `altcontactphone` varchar(50) DEFAULT NULL,
3263   `smsalertnumber` varchar(50) DEFAULT NULL,
3264   `privacy` int(11) DEFAULT NULL,
3265   PRIMARY KEY (`verification_token`,`borrowernumber`),
3266   KEY `verification_token` (`verification_token`),
3267   KEY `borrowernumber` (`borrowernumber`)
3268 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3269
3270 --
3271 -- Table structure for table linktracker
3272 -- This stores clicks to external links
3273 --
3274
3275 DROP TABLE IF EXISTS linktracker;
3276 CREATE TABLE linktracker (
3277    id int(11) NOT NULL AUTO_INCREMENT, -- primary key identifier
3278    biblionumber int(11) DEFAULT NULL, -- biblionumber of the record the link is from
3279    itemnumber int(11) DEFAULT NULL, -- itemnumber if applicable that the link was from
3280    borrowernumber int(11) DEFAULT NULL, -- borrowernumber who clicked the link
3281    url text, -- the link itself
3282    timeclicked datetime DEFAULT NULL, -- the date and time the link was clicked
3283    PRIMARY KEY (id),
3284    KEY bibidx (biblionumber),
3285    KEY itemidx (itemnumber),
3286    KEY borridx (borrowernumber),
3287    KEY dateidx (timeclicked)
3288 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3289
3290 --
3291 -- Table structure for table 'plugin_data'
3292 --
3293
3294 CREATE TABLE IF NOT EXISTS plugin_data (
3295   plugin_class varchar(255) NOT NULL,
3296   plugin_key varchar(255) NOT NULL,
3297   plugin_value text,
3298   PRIMARY KEY (plugin_class,plugin_key)
3299 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3300
3301 --
3302 -- Table structure for table `patron_lists`
3303 --
3304
3305 DROP TABLE IF EXISTS patron_lists;
3306 CREATE TABLE patron_lists (
3307   patron_list_id int(11) NOT NULL AUTO_INCREMENT, -- unique identifier
3308   name varchar(255) CHARACTER SET utf8 NOT NULL,  -- the list's name
3309   owner int(11) NOT NULL,                         -- borrowernumber of the list creator
3310   PRIMARY KEY (patron_list_id),
3311   KEY owner (owner)
3312 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3313
3314 --
3315 -- Constraints for table `patron_lists`
3316 --
3317 ALTER TABLE `patron_lists`
3318   ADD CONSTRAINT patron_lists_ibfk_1 FOREIGN KEY (`owner`) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE;
3319
3320 --
3321 -- Table structure for table 'patron_list_patrons'
3322 --
3323
3324 DROP TABLE IF EXISTS patron_list_patrons;
3325 CREATE TABLE patron_list_patrons (
3326   patron_list_patron_id int(11) NOT NULL AUTO_INCREMENT, -- unique identifier
3327   patron_list_id int(11) NOT NULL,                       -- the list this entry is part of
3328   borrowernumber int(11) NOT NULL,                       -- the borrower that is part of this list
3329   PRIMARY KEY (patron_list_patron_id),
3330   KEY patron_list_id (patron_list_id),
3331   KEY borrowernumber (borrowernumber)
3332 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3333
3334 --
3335 -- Constraints for table `patron_list_patrons`
3336 --
3337 ALTER TABLE `patron_list_patrons`
3338   ADD CONSTRAINT patron_list_patrons_ibfk_1 FOREIGN KEY (patron_list_id) REFERENCES patron_lists (patron_list_id) ON DELETE CASCADE ON UPDATE CASCADE,
3339   ADD CONSTRAINT patron_list_patrons_ibfk_2 FOREIGN KEY (borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE ON UPDATE CASCADE;
3340
3341 --
3342 -- Table structure for table 'marc_modification_templates'
3343 --
3344
3345 CREATE TABLE IF NOT EXISTS marc_modification_templates (
3346     template_id int(11) NOT NULL AUTO_INCREMENT,
3347     name text NOT NULL,
3348     PRIMARY KEY (template_id)
3349 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8;
3350
3351 --
3352 -- Table structure for table 'marc_modification_template_actions'
3353 --
3354
3355 CREATE TABLE IF NOT EXISTS marc_modification_template_actions (
3356   mmta_id int(11) NOT NULL AUTO_INCREMENT,
3357   template_id int(11) NOT NULL,
3358   ordering int(3) NOT NULL,
3359   action enum('delete_field','update_field','move_field','copy_field') NOT NULL,
3360   field_number smallint(6) NOT NULL DEFAULT '0',
3361   from_field varchar(3) NOT NULL,
3362   from_subfield varchar(1) DEFAULT NULL,
3363   field_value varchar(100) DEFAULT NULL,
3364   to_field varchar(3) DEFAULT NULL,
3365   to_subfield varchar(1) DEFAULT NULL,
3366   to_regex_search text,
3367   to_regex_replace text,
3368   to_regex_modifiers varchar(8) DEFAULT '',
3369   conditional enum('if','unless') DEFAULT NULL,
3370   conditional_field varchar(3) DEFAULT NULL,
3371   conditional_subfield varchar(1) DEFAULT NULL,
3372   conditional_comparison enum('exists','not_exists','equals','not_equals') DEFAULT NULL,
3373   conditional_value text,
3374   conditional_regex tinyint(1) NOT NULL DEFAULT '0',
3375   description text,
3376   PRIMARY KEY (mmta_id),
3377   CONSTRAINT `mmta_ibfk_1` FOREIGN KEY (`template_id`) REFERENCES `marc_modification_templates` (`template_id`) ON DELETE CASCADE ON UPDATE CASCADE
3378 ) ENGINE=InnoDB  DEFAULT CHARSET=utf8;
3379
3380 /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
3381 /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
3382 /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
3383 /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
3384 /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
3385 /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
3386 /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
3387 /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
3388