MERGE 1.2 and main branches
[koha.git] / database.mysql
1 # MySQL dump 7.1
2 #
3 # Host: localhost    Database: c4test
4 #--------------------------------------------------------
5 # Server version        3.22.32-log
6
7 #
8 # Table structure for table 'accountlines'
9 #
10 CREATE TABLE accountlines (
11   borrowernumber int(11) DEFAULT '0' NOT NULL,
12   accountno smallint(6) DEFAULT '0' NOT NULL,
13   itemnumber int(11),
14   date date,
15   amount decimal(28,6),
16   description text,
17   dispute text,
18   accounttype varchar(5),
19   amountoutstanding decimal(28,6),
20   timestamp timestamp(14),
21   KEY acctsborridx (borrowernumber),
22   KEY timeidx (timestamp)
23 );
24
25 #
26 # Table structure for table 'accountoffsets'
27 #
28 CREATE TABLE accountoffsets (
29   borrowernumber int(11) DEFAULT '0' NOT NULL,
30   accountno smallint(6) DEFAULT '0' NOT NULL,
31   offsetaccount smallint(6) DEFAULT '0' NOT NULL,
32   offsetamount decimal(28,6),
33   timestamp timestamp(14)
34 );
35
36 #
37 # Table structure for table 'additionalauthors'
38 #
39 CREATE TABLE additionalauthors (
40   author text NOT NULL,
41   biblionumber int(11) DEFAULT '0' NOT NULL,
42   KEY bibidx (biblionumber)
43 );
44
45 #
46 # Table structure for table 'aqbookfund'
47 #
48 CREATE TABLE aqbookfund (
49   bookfundid varchar(5) DEFAULT '' NOT NULL,
50   bookfundname text,
51   bookfundgroup varchar(5)
52 );
53
54 #
55 # Table structure for table 'aqbooksellers'
56 #
57 CREATE TABLE aqbooksellers (
58   id int(11),
59   name text,
60   address1 text,
61   address2 text,
62   address3 text,
63   address4 text,
64   phone varchar(30),
65   accountnumber text,
66   othersupplier text,
67   currency char(3) DEFAULT '' NOT NULL,
68   deliverydays smallint(6),
69   followupdays smallint(6),
70   followupscancel smallint(6),
71   specialty text,
72   booksellerfax text,
73   notes text,
74   bookselleremail text,
75   booksellerurl text,
76   contact varchar(100),
77   postal text,
78   url varchar(255),
79   contpos varchar(100),
80   contphone varchar(100),
81   contfax varchar(100),
82   contaltphone varchar(100),
83   contemail varchar(100),
84   contnotes text,
85   active tinyint(4),
86   listprice varchar(5),
87   invoiceprice varchar(5),
88   gstreg tinyint(4),
89   listincgst tinyint(4),
90   invoiceincgst tinyint(4),
91   discount float(6,4),
92   fax varchar(50)
93 );
94
95 #
96 # Table structure for table 'aqbudget'
97 #
98 CREATE TABLE aqbudget (
99   bookfundid char(5) DEFAULT '' NOT NULL,
100   startdate date DEFAULT '0000-00-00' NOT NULL,
101   enddate date,
102   budgetamount decimal(13,2)
103 );
104
105 #
106 # Table structure for table 'aqorderbreakdown'
107 #
108 CREATE TABLE aqorderbreakdown (
109   ordernumber int(11),
110   linenumber int(11),
111   branchcode char(4),
112   bookfundid char(5) DEFAULT '' NOT NULL,
113   allocation smallint(6)
114 );
115
116 #
117 # Table structure for table 'aqorderdelivery'
118 #
119 CREATE TABLE aqorderdelivery (
120   ordernumber date DEFAULT '0000-00-00' NOT NULL,
121   deliverynumber smallint(6) DEFAULT '0' NOT NULL,
122   deliverydate varchar(18),
123   qtydelivered smallint(6),
124   deliverycomments text
125 );
126
127 #
128 # Table structure for table 'aqorders'
129 #
130 CREATE TABLE aqorders (
131   ordernumber int(11) NOT NULL auto_increment,
132   biblionumber int(11) default NULL,
133   title text,
134   requisitionedby varchar(10) default NULL,
135   authorisedby varchar(10) default NULL,
136   booksellerid varchar(10) NOT NULL default '',
137   deliverydays smallint(6) default NULL,
138   followupdays smallint(6) default NULL,
139   numberfollowupsallowed smallint(6) default NULL,
140   numberfollowupssent smallint(6) default NULL,
141   entrydate date default NULL,
142   dateprinted date default NULL,
143   quantity smallint(6) default NULL,
144   currency char(3) default NULL,
145   listprice decimal(28,6) default NULL,
146   totalamount decimal(28,6) default NULL,
147   datereceived date default NULL,
148   booksellerinvoicenumber text,
149   freight decimal(28,6) default NULL,
150   unitprice decimal(28,6) default NULL,
151   quantityreceived smallint(6) default NULL,
152   sourced text,
153   cancelledby varchar(10) default NULL,
154   quantityreceiveddamaged smallint(6) default NULL,
155   datecancellationprinted date default NULL,
156   notes text,
157   supplierreference text,
158   purchaseordernumber text,
159   subscription tinyint(1) default NULL,
160   subscriptionfrom date default NULL,
161   subscriptionto date default NULL,
162   serialid varchar(30) default NULL,
163   basketno int(11) default NULL,
164   biblioitemnumber int(11) default NULL,
165   timestamp timestamp(14) NOT NULL,
166   rrp decimal(13,2) default NULL,
167   ecost decimal(13,2) default NULL,
168   gst decimal(13,2) default NULL,
169   PRIMARY KEY  (ordernumber),
170   KEY booksellerid (booksellerid),
171   KEY biblionumber (biblionumber),
172   KEY biblioitemnumber (biblioitemnumber),
173   KEY biblioitemnumber_2 (biblioitemnumber)
174 ) TYPE=MyISAM;
175
176 #
177 # Table structure for table 'biblio'
178 #
179 CREATE TABLE biblio (
180   biblionumber int(11) DEFAULT '0' NOT NULL,
181   author text,
182   title text,
183   unititle text,
184   notes text,
185   abstract text,
186   serial tinyint(1),
187   seriestitle text,
188   copyrightdate smallint(6),
189   timestamp timestamp(14),
190   KEY blbnoidx (biblionumber),
191   PRIMARY KEY (biblionumber)
192 );
193
194 #
195 # Table structure for table 'biblioanalysis'
196 #
197 CREATE TABLE biblioanalysis (
198   analyticaltitle text,
199   biblionumber int(11) DEFAULT '0' NOT NULL,
200   analyticalauthor text
201 );
202
203 #
204 # Table structure for table 'biblioitems'
205 #
206 CREATE TABLE biblioitems (
207   biblioitemnumber int(11) DEFAULT '0' NOT NULL,
208   biblionumber int(11) DEFAULT '0' NOT NULL,
209   volume text,
210   number text,
211   classification varchar(25),
212   itemtype varchar(4),
213   url varchar(255),
214   isbn varchar(14),
215   issn varchar(9),
216   dewey double(8,6),
217   subclass char(3),
218   publicationyear smallint(6),
219   publishercode varchar(255),
220   volumedate date,
221   volumeddesc varchar(255),
222   timestamp timestamp(14),
223   illus varchar(255),
224   pages varchar(255),
225   notes text,
226   size varchar(255),
227   place varchar(255),
228   KEY bibinoidx (biblioitemnumber),
229   KEY bibnoidx (biblionumber),
230   PRIMARY KEY (biblioitemnumber)
231 );
232
233 #
234 # Table structure for table 'bibliosubject'
235 #
236 CREATE TABLE bibliosubject (
237   subject text NOT NULL,
238   biblionumber int(11) DEFAULT '0' NOT NULL
239 );
240
241 #
242 # Table structure for table 'bibliosubtitle'
243 #
244 CREATE TABLE bibliosubtitle (
245   subtitle text NOT NULL,
246   biblionumber int(11) DEFAULT '0' NOT NULL,
247   KEY bibsubidx (biblionumber)
248 );
249
250 #
251 # Table structure for table 'borexp'
252 #
253 CREATE TABLE borexp (
254   borrowernumber int(11),
255   newexp date
256 );
257
258 #
259 # Table structure for table 'borrowers'
260 #
261 CREATE TABLE borrowers (
262   borrowernumber int(11) DEFAULT '0' NOT NULL,
263   cardnumber varchar(9) DEFAULT '' NOT NULL,
264   surname text NOT NULL,
265   firstname text NOT NULL,
266   title text,
267   othernames text,
268   initials text NOT NULL,
269   streetaddress text NOT NULL,
270   suburb text,
271   city text NOT NULL,
272   phone text NOT NULL,
273   emailaddress text,
274   faxnumber text,
275   altstreetaddress text,
276   altsuburb text,
277   altcity text,
278   altphone text,
279   dateofbirth date,
280   branchcode varchar(4) DEFAULT '' NOT NULL,
281   categorycode char(2),
282   dateenrolled date,
283   gonenoaddress tinyint(1),
284   lost tinyint(1),
285   debarred tinyint(1),
286   studentnumber text,
287   school text,
288   contactname text,
289   borrowernotes text,
290   guarantor int(11),
291   area char(2),
292   ethnicity varchar(50),
293   ethnotes varchar(255),
294   sex char(1),
295   expiry date,
296   altnotes varchar(255),
297   altrelationship varchar(100),
298   streetcity text,
299   phoneday varchar(50),
300   preferredcont char(1),
301   physstreet varchar(100),
302   KEY borrowernumber (borrowernumber),
303   KEY cardnumber (cardnumber)
304 );
305
306 #
307 # Table structure for table 'branchcategories'
308 #
309 CREATE TABLE branchcategories (
310   categorycode char(2) DEFAULT '' NOT NULL,
311   categoryname text,
312   codedescription text,    
313   PRIMARY KEY (categorycode)   
314 );      
315
316 # Table structure for table 'branchrelations'   
317 #
318 CREATE TABLE branchrelations (
319   branchcode varchar(4) DEFAULT '' NOT NULL,
320   categorycode varchar(4) DEFAULT '' NOT NULL  
321 );
322
323 #
324 # Table structure for table 'branches'
325 #
326 CREATE TABLE branches (
327   branchcode varchar(4) DEFAULT '' NOT NULL,
328   branchname text NOT NULL,
329   branchaddress1 text,
330   branchaddress2 text,
331   branchaddress3 text,
332   branchphone text,
333   branchfax text,
334   branchemail text,
335   issuing tinyint(4),
336   UNIQUE branchcode (branchcode)
337 );
338
339 #
340 # Table structure for table 'branchtransfers'
341 #
342 CREATE TABLE branchtransfers (
343   itemnumber int(11) DEFAULT '0' NOT NULL,
344   datesent datetime DEFAULT '0000-00-00' NOT NULL,
345   frombranch varchar(4),
346   datearrived datetime,
347   tobranch varchar(4),
348   comments text
349 );
350
351 #
352 # Table structure for table 'catalogueentry'
353 #
354 CREATE TABLE catalogueentry (
355   catalogueentry text NOT NULL,
356   entrytype char(2),
357   see text,
358   seealso text,
359   seeinstead text,
360   biblionumber int(11)
361 );
362
363 #
364 # Table structure for table 'categories'
365 #
366 CREATE TABLE categories (
367   categorycode char(2) DEFAULT '' NOT NULL,
368   description text,
369   enrolmentperiod smallint(6),
370   upperagelimit smallint(6),
371   dateofbirthrequired tinyint(1),
372   finetype varchar(30),
373   bulk tinyint(1),
374   enrolmentfee decimal(28,6),
375   overduenoticerequired tinyint(1),
376   issuelimit smallint(6),
377   reservefee decimal(28,6),
378   UNIQUE categorycode (categorycode)
379 );
380
381 #
382 # Table structure for table 'categoryitem'
383 #
384 CREATE TABLE categoryitem (
385   categorycode char(2) DEFAULT '' NOT NULL,
386   itemtype varchar(4) DEFAULT '' NOT NULL,
387   restrictedtype tinyint(1),
388   rentaldiscount decimal(28,6),
389   reservecharge decimal(28,6),
390   fine decimal(28,6),
391   firstremind int(11),
392   chargeperiod int(11),
393   accountsent int(11),
394   chargename varchar(100)
395 );
396
397 #
398 # Table structure for table 'classification'
399 #
400 CREATE TABLE classification (
401   classification varchar(12) DEFAULT '' NOT NULL
402 );
403
404 #
405 # Table structure for table 'currency'
406 #
407 CREATE TABLE currency (
408   currency varchar(10),
409   rate float(7,5)
410 );
411
412 #
413 # Table structure for table 'deletedbiblio'
414 #
415 CREATE TABLE deletedbiblio (
416   biblionumber int(11) DEFAULT '0' NOT NULL,
417   author text,
418   title text,
419   unititle text,
420   notes text,
421   abstract text,
422   serial tinyint(1),
423   seriestitle text,
424   copyrightdate smallint(6),
425   timestamp timestamp(14),
426   KEY blbnoidx (biblionumber),
427   PRIMARY KEY (biblionumber)
428 );
429
430 #
431 # Table structure for table 'deletedbiblioitems'
432 #
433 CREATE TABLE deletedbiblioitems (
434   biblioitemnumber int(11) DEFAULT '0' NOT NULL,
435   biblionumber int(11) DEFAULT '0' NOT NULL,
436   volume text,
437   number text,
438   classification varchar(25),
439   itemtype varchar(4),
440   isbn varchar(14),
441   issn varchar(9),
442   dewey double(8,6),
443   subclass char(3),
444   publicationyear smallint(6),
445   publishercode varchar(255),
446   volumedate date,
447   volumeddesc varchar(255),
448   timestamp timestamp(14),
449   illus varchar(255),
450   pages varchar(255),
451   notes text,
452   size varchar(255),
453   KEY bibinoidx (biblioitemnumber),
454   KEY bibnoidx (biblionumber),
455   PRIMARY KEY (biblioitemnumber)
456 );
457
458 #
459 # Table structure for table 'deletedborrowers'
460 #
461 CREATE TABLE deletedborrowers (
462   borrowernumber int(11) DEFAULT '0' NOT NULL,
463   cardnumber varchar(9) DEFAULT '' NOT NULL,
464   surname text NOT NULL,
465   firstname text NOT NULL,
466   title text,
467   othernames text,
468   initials text NOT NULL,
469   streetaddress text NOT NULL,
470   suburb text,
471   city text NOT NULL,
472   phone text NOT NULL,
473   emailaddress text,
474   faxnumber text,
475   altstreetaddress text,
476   altsuburb text,
477   altcity text,
478   altphone text,
479   dateofbirth date,
480   branchcode varchar(4) DEFAULT '' NOT NULL,
481   categorycode char(2),
482   dateenrolled date,
483   gonenoaddress tinyint(1),
484   lost tinyint(1),
485   debarred tinyint(1),
486   studentnumber text,
487   school text,
488   contactname text,
489   borrowernotes text,
490   guarantor int(11),
491   area char(2),
492   ethnicity varchar(50),
493   ethnotes varchar(255),
494   sex char(1),
495   expiry date,
496   altnotes varchar(255),
497   altrelationship varchar(100),
498   streetcity text,
499   phoneday varchar(50),
500   preferredcont varchar(100),
501   physstreet varchar(100),
502   KEY borrowernumber (borrowernumber),
503   KEY cardnumber (cardnumber)
504 );
505
506 #
507 # Table structure for table 'deleteditems'
508 #
509 CREATE TABLE deleteditems (
510   itemnumber int(11) DEFAULT '0' NOT NULL,
511   biblionumber int(11) DEFAULT '0' NOT NULL,
512   multivolumepart varchar(30),
513   biblioitemnumber int(11) DEFAULT '0' NOT NULL,
514   barcode varchar(9) DEFAULT '' NOT NULL,
515   dateaccessioned date,
516   booksellerid varchar(10),
517   homebranch varchar(4),
518   price decimal(28,6),
519   replacementprice decimal(28,6),
520   replacementpricedate date,
521   datelastborrowed date,
522   datelastseen date,
523   multivolume tinyint(1),
524   stack tinyint(1),
525   notforloan tinyint(1),
526   itemlost tinyint(1),
527   wthdrawn tinyint(1),
528   bulk varchar(30),
529   issues smallint(6),
530   renewals smallint(6),
531   reserves smallint(6),
532   restricted tinyint(1),
533   binding decimal(28,6),
534   itemnotes text,
535   holdingbranch varchar(4),
536   interim tinyint(1),
537   timestamp timestamp(14),
538   KEY itembarcodeidx (barcode),
539   KEY itembinoidx (biblioitemnumber),
540   KEY itembibnoidx (biblionumber),
541   PRIMARY KEY (itemnumber),
542   UNIQUE barcode (barcode)
543 );
544
545 #
546 # Table structure for table 'ethnicity'
547 #
548
549 CREATE TABLE ethnicity (
550   code varchar(10) NOT NULL default '',
551   name varchar(255) default NULL,
552   PRIMARY KEY  (code)
553 );      
554
555 #
556 # Table structure for table 'issues'
557 #
558 CREATE TABLE issues (
559   borrowernumber int(11) DEFAULT '0' NOT NULL,
560   itemnumber int(11) DEFAULT '0' NOT NULL,
561   date_due date,
562   branchcode char(4),
563   issuingbranch char(18),
564   returndate date,
565   lastreneweddate date,
566   return char(4),
567   renewals tinyint(4),
568   timestamp timestamp(14),
569   KEY issuesborridx (borrowernumber),
570   KEY issuesitemidx (itemnumber),
571   KEY bordate (borrowernumber,timestamp)
572 );
573
574 #
575 # Table structure for table 'items'
576 #
577 CREATE TABLE items (
578   itemnumber int(11) DEFAULT '0' NOT NULL,
579   biblionumber int(11) DEFAULT '0' NOT NULL,
580   multivolumepart varchar(30),
581   biblioitemnumber int(11) DEFAULT '0' NOT NULL,
582   barcode varchar(9) DEFAULT '' NOT NULL,
583   dateaccessioned date,
584   booksellerid varchar(10),
585   homebranch varchar(4),
586   price decimal(8,2),
587   replacementprice decimal(8,2),
588   replacementpricedate date,
589   datelastborrowed date,
590   datelastseen date,
591   multivolume tinyint(1),
592   stack tinyint(1),
593   notforloan tinyint(1),
594   itemlost tinyint(1),
595   wthdrawn tinyint(1),
596   bulk varchar(30),
597   issues smallint(6),
598   renewals smallint(6),
599   reserves smallint(6),
600   restricted tinyint(1),
601   binding decimal(28,6),
602   itemnotes text,
603   holdingbranch varchar(4),
604   paidfor text,
605   timestamp timestamp(14),
606   KEY itembarcodeidx (barcode),
607   KEY itembinoidx (biblioitemnumber),
608   KEY itembibnoidx (biblionumber),
609   PRIMARY KEY (itemnumber),
610   UNIQUE barcode (barcode)
611 );
612
613 #
614 # Table structure for table 'itemsprices'
615 #
616 CREATE TABLE itemsprices (
617   itemnumber int(11),
618   price1 decimal(28,6),
619   price2 decimal(28,6)
620 );
621
622 #
623 # Table structure for table 'itemtypes'
624 #
625 CREATE TABLE itemtypes (
626   itemtype varchar(4) DEFAULT '' NOT NULL,
627   description text,
628   loanlength smallint(6),
629   renewalsallowed smallint(6),
630   rentalcharge double(16,4),
631   UNIQUE itemtype (itemtype)
632 );
633
634 #
635 # Table structure for table 'multipart'
636 #
637 CREATE TABLE multipart (
638   itemnumber int(11) DEFAULT '0' NOT NULL,
639   other int(11) DEFAULT '0' NOT NULL
640 );
641
642 #
643 # Table structure for table 'multivolume'
644 #
645 CREATE TABLE multivolume (
646   biblionumber int(11) DEFAULT '0' NOT NULL,
647   multivolumepart varchar(30) DEFAULT '' NOT NULL
648 );
649
650 #
651 # Table structure for table 'newitems'
652 #
653 CREATE TABLE newitems (
654   itemnumber int(11) DEFAULT '0' NOT NULL,
655   publishercode varchar(18),
656   biblionumber int(11) DEFAULT '0' NOT NULL,
657   multivolumepart varchar(30),
658   barcode varchar(9) DEFAULT '' NOT NULL,
659   dateaccessioned date,
660   booksellerid varchar(10),
661   homebranch varchar(4),
662   price decimal(28,6),
663   replacementprice decimal(28,6),
664   replacementpricedate date,
665   datelastborrowed date,
666   datelastseen date,
667   multivolume tinyint(1),
668   stack tinyint(1),
669   notforloan tinyint(1),
670   itemlost tinyint(1),
671   wthdrawn tinyint(1),
672   bulk varchar(30),
673   issues smallint(6),
674   renewals smallint(6),
675   reserves smallint(6),
676   restricted tinyint(1),
677   binding decimal(28,6),
678   itemnotes text,
679   holdingbranch varchar(4),
680   interim tinyint(1),
681   volume text,
682   number text,
683   classification varchar(12),
684   itemtype varchar(4),
685   isbn varchar(14),
686   issn varchar(9),
687   dewey double(16,4),
688   subclass char(3),
689   publicationyear smallint(6),
690   KEY itembarcodeidx (barcode),
691   KEY itembibnoidx (biblionumber),
692   PRIMARY KEY (itemnumber)
693 );
694
695 #
696 # Table structure for table 'printers'
697 #
698 CREATE TABLE printers (
699   printername char(40),
700   printqueue char(20),
701   printtype char(20)
702 );
703
704 #
705 # Table structure for table 'procedures'
706 #
707 CREATE TABLE procedures (
708   proccode varchar(4),
709   procdesc text,
710   proclevel smallint(6)
711 );
712
713 #
714 # Table structure for table 'publisher'
715 #
716 CREATE TABLE publisher (
717   publishercode varchar(18) DEFAULT '' NOT NULL,
718   publishername text NOT NULL
719 );
720
721 #
722 # Table structure for table 'reserveconstraints'
723 #
724 CREATE TABLE reserveconstraints (
725   borrowernumber int(11) DEFAULT '0' NOT NULL,
726   reservedate date DEFAULT '0000-00-00' NOT NULL,
727   biblionumber int(11) DEFAULT '0' NOT NULL,
728   biblioitemnumber int(11),
729   timestamp timestamp(14)
730 );
731
732 #
733 # Table structure for table 'reserves'
734 #
735 CREATE TABLE reserves (
736   borrowernumber int(11) DEFAULT '0' NOT NULL,
737   reservedate date DEFAULT '0000-00-00' NOT NULL,
738   biblionumber int(11) DEFAULT '0' NOT NULL,
739   constrainttype char(1),
740   branchcode varchar(4),
741   notificationdate date,
742   reminderdate date,
743   cancellationdate date,
744   reservenotes text,
745   priority smallint(6),
746   found char(1),
747   timestamp timestamp(14),
748   itemnumber int(11)
749 );
750
751 #
752 # Table structure for table 'searchstats'
753 #
754 CREATE TABLE searchstats (
755   time datetime,
756   searchstring text
757 );
758
759 #
760 # Table structure for table 'serialissues'
761 #
762 CREATE TABLE serialissues (
763   biblionumber int(11) DEFAULT '0' NOT NULL,
764   volume varchar(20) DEFAULT '' NOT NULL,
765   number varchar(20) DEFAULT '' NOT NULL,
766   ordernumber smallint(6),
767   issuedate varchar(20),
768   received varchar(18)
769 );
770
771 #
772 # Table structure for table 'statistics'
773 #
774 CREATE TABLE statistics (
775   datetime datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
776   branch varchar(4),
777   proccode varchar(4),
778   value double(16,4),
779   type varchar(16),
780   other text,
781   usercode varchar(10),
782   itemnumber int(11),
783   itemtype varchar(4),
784   KEY timeidx (datetime)
785 );
786
787 #
788 # Table structure for table 'stopwords'
789 #
790 CREATE TABLE stopwords (
791   word varchar(255)
792 );
793
794 #
795 # Table structure for table 'systempreferences'
796 #
797 CREATE TABLE systempreferences (
798   variable char(50) DEFAULT '' NOT NULL,
799   value char(200),
800   explanation char(200) default '',
801   PRIMARY KEY (variable)
802 );
803
804 #
805 # Table structure for table 'users'
806 #
807 CREATE TABLE users (
808   usercode varchar(10),
809   username text,
810   password text,
811   level smallint(6)
812 );
813
814 #
815 # Table structure for table 'websites'
816 #
817
818 CREATE TABLE websites (
819   websitenumber int(11) NOT NULL auto_increment,
820   biblionumber int(11) NOT NULL default '0',
821   title text,
822   description text,
823   url varchar(255),
824   PRIMARY KEY (websitenumber)
825 ) TYPE=ISAM PACK_KEYS=1;
826
827 CREATE TABLE uploadedmarc (
828   id int(11) NOT NULL auto_increment,
829   marc longblob,
830   hidden smallint(6) default NULL,
831   name varchar(255) default NULL,
832   PRIMARY KEY  (id)
833 );
834                                         
835
836 CREATE TABLE marcrecorddone (
837   isbn char(40) default NULL,
838   issn char(40) default NULL,
839   lccn char(40) default NULL
840 );