6 # This script checks for required updates to the database.
8 # Part of the Koha Library Software www.koha.org
9 # Licensed under the GPL.
12 # - Would also be a good idea to offer to do a backup at this time...
14 # NOTE: If you do something more than once in here, make it table driven.
24 use MARC::File::XML ( BinaryEncoding => 'utf8' );
26 # FIXME - The user might be installing a new database, so can't rely
27 # on /etc/koha.conf anyway.
34 %existingtables, # tables already in database
38 $type, $null, $key, $default, $extra,
39 $prefitem, # preference item in systempreferences table
46 my $dbh = C4::Context->dbh;
47 print "connected to your DB. Checking & modifying it\n" unless $silent;
48 $|=1; # flushes output
53 # Tables to add if they don't exist
55 categorytable => "(categorycode char(5) NOT NULL default '',
56 description text default '',
57 itemtypecodes text default '',
58 PRIMARY KEY (categorycode)
60 subcategorytable => "(subcategorycode char(5) NOT NULL default '',
61 description text default '',
62 itemtypecodes text default '',
63 PRIMARY KEY (subcategorycode)
65 mediatypetable => "(mediatypecode char(5) NOT NULL default '',
66 description text default '',
67 itemtypecodes text default '',
68 PRIMARY KEY (mediatypecode)
71 `timestamp` TIMESTAMP NOT NULL ,
72 `user` INT( 11 ) NOT NULL ,
73 `module` TEXT default '',
74 `action` TEXT default '' ,
75 `object` INT(11) default '' ,
76 `info` TEXT default '' ,
77 PRIMARY KEY ( `timestamp` , `user` )
80 module varchar(20) NOT NULL default '',
81 code varchar(20) NOT NULL default '',
82 name varchar(100) NOT NULL default '',
83 title varchar(200) NOT NULL default '',
85 PRIMARY KEY (module,code)
88 alertid int(11) NOT NULL auto_increment,
89 borrowernumber int(11) NOT NULL default '0',
90 type varchar(10) NOT NULL default '',
91 externalid varchar(20) NOT NULL default '',
92 PRIMARY KEY (alertid),
93 KEY borrowernumber (borrowernumber),
94 KEY type (type,externalid)
97 `idnew` int(10) unsigned NOT NULL auto_increment,
98 `title` varchar(250) NOT NULL default '',
100 `lang` varchar(4) NOT NULL default '',
101 `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP,
102 PRIMARY KEY (`idnew`)
104 repeatable_holidays => "(
105 `id` int(11) NOT NULL auto_increment,
106 `branchcode` varchar(4) NOT NULL default '',
107 `weekday` smallint(6) default NULL,
108 `day` smallint(6) default NULL,
109 `month` smallint(6) default NULL,
110 `title` varchar(50) NOT NULL default '',
111 `description` text NOT NULL,
114 special_holidays => "(
115 `id` int(11) NOT NULL auto_increment,
116 `branchcode` varchar(4) NOT NULL default '',
117 `day` smallint(6) NOT NULL default '0',
118 `month` smallint(6) NOT NULL default '0',
119 `year` smallint(6) NOT NULL default '0',
120 `isexception` smallint(1) NOT NULL default '1',
121 `title` varchar(50) NOT NULL default '',
122 `description` text NOT NULL,
125 overduerules =>"(`branchcode` varchar(255) NOT NULL default '',
126 `categorycode` char(2) NOT NULL default '',
127 `delay1` int(4) default '0',
128 `letter1` varchar(20) default NULL,
129 `debarred1` char(1) default '0',
130 `delay2` int(4) default '0',
131 `debarred2` char(1) default '0',
132 `letter2` varchar(20) default NULL,
133 `delay3` int(4) default '0',
134 `letter3` varchar(20) default NULL,
135 `debarred3` int(1) default '0',
136 PRIMARY KEY (`branchcode`,`categorycode`)
138 cities => "(`cityid` int auto_increment,
139 `city_name` char(100) NOT NULL,
140 `city_zipcode` char(20),
141 PRIMARY KEY (`cityid`)
143 roadtype => "(`roadtypeid` int auto_increment,
144 `road_type` char(100) NOT NULL,
145 PRIMARY KEY (`roadtypeid`)
149 labelid int(11) NOT NULL auto_increment,
150 itemnumber varchar(100) NOT NULL default '',
151 timestamp timestamp(14) NOT NULL,
152 PRIMARY KEY (labelid)
156 id int(4) NOT NULL auto_increment,
157 barcodetype char(100) default '',
158 title tinyint(1) default '0',
159 isbn tinyint(1) default '0',
160 itemtype tinyint(1) default '0',
161 barcode tinyint(1) default '0',
162 dewey tinyint(1) default '0',
163 class tinyint(1) default '0',
164 author tinyint(1) default '0',
165 papertype char(100) default '',
166 startrow int(2) default NULL,
172 my %requirefields = (
173 subscription => { 'letter' => 'char(20) NULL', 'distributedto' => 'text NULL'},
174 itemtypes => { 'imageurl' => 'char(200) NULL'},
175 aqbookfund => { 'branchcode' => 'varchar(4) NULL'},
176 aqbudget => { 'branchcode' => 'varchar(4) NULL'},
177 auth_header => { 'marc' => 'BLOB NOT NULL', 'linkid' => 'BIGINT(20) NULL'},
178 auth_subfield_structure =>{ 'hidden' => 'TINYINT(3) NOT NULL UNSIGNED ZEROFILL', 'kohafield' => 'VARCHAR(45) NOT NULL', 'linkid' => 'TINYINT(1) NOT NULL UNSIGNED', 'isurl' => 'TINYINT(1) UNSIGNED'},
179 statistics => { 'associatedborrower' => 'integer'},
180 # tablename => { 'field' => 'fieldtype' },
183 my %dropable_table = (
184 sessionqueries => 'sessionqueries',
185 marcrecorddone => 'marcrecorddone',
187 itemsprices => 'itemsprices',
188 biblioanalysis => 'biblioanalysis',
190 # tablename => 'tablename',
193 my %uselessfields = (
194 # tablename => "field1,field2",
195 borrowers => "suburb,altstreetaddress,altsuburb,altcity,studentnumber,school,area,preferredcont,altcp",
196 deletedborrowers=> "suburb,altstreetaddress,altsuburb,altcity,studentnumber,school,area,preferredcont,altcp",
198 # the other hash contains other actions that can't be done elsewhere. they are done
199 # either BEFORE of AFTER everything else, depending on "when" entry (default => AFTER)
201 # The tabledata hash contains data that should be in the tables.
202 # The uniquefieldrequired hash entry is used to determine which (if any) fields
203 # must not exist in the table for this row to be inserted. If the
204 # uniquefieldrequired entry is already in the table, the existing data is not
205 # modified, unless the forceupdate hash entry is also set. Fields in the
206 # anonymous "forceupdate" hash will be forced to be updated to the default
207 # values given in the %tabledata hash.
211 # { uniquefielrequired => 'fieldname', # the primary key in the table
212 # fieldname => fieldvalue,
213 # fieldname2 => fieldvalue2,
216 systempreferences => [
218 uniquefieldrequired => 'variable',
219 variable => 'Activate_Log',
221 forceupdate => { 'explanation' => 1,
223 explanation => 'Turn Log Actions on DB On an Off',
227 uniquefieldrequired => 'variable',
228 variable => 'IndependantBranches',
230 forceupdate => { 'explanation' => 1,
232 explanation => 'Turn Branch independancy management On an Off',
236 uniquefieldrequired => 'variable',
237 variable => 'ReturnBeforeExpiry',
239 forceupdate => { 'explanation' => 1,
241 explanation => 'If Yes, Returndate on issuing can\'t be after borrower card expiry',
245 uniquefieldrequired => 'variable',
246 variable => 'opacstylesheet',
248 forceupdate => { 'explanation' => 1,
250 explanation => 'Enter a complete URL to use an alternate stylesheet in OPAC',
254 uniquefieldrequired => 'variable',
255 variable => 'opacsmallimage',
257 forceupdate => { 'explanation' => 1,
259 explanation => 'Enter a complete URL to an image, will be on top/left instead of the Koha logo',
263 uniquefieldrequired => 'variable',
264 variable => 'opaclargeimage',
266 forceupdate => { 'explanation' => 1,
268 explanation => 'Enter a complete URL to an image, will be on the main page, instead of the Koha logo',
272 uniquefieldrequired => 'variable',
273 variable => 'delimiter',
275 forceupdate => { 'explanation' => 1,
277 explanation => 'separator for reports exported to spreadsheet',
281 uniquefieldrequired => 'variable',
283 value => 'OPENOFFICE.ORG',
284 forceupdate => { 'explanation' => 1,
287 explanation => 'Define the default application for report exportations into files',
289 options => 'EXCEL|OPENOFFICE.ORG'
292 uniquefieldrequired => 'variable',
293 variable => 'Delimiter',
295 forceupdate => { 'explanation' => 1,
298 explanation => 'Define the default separator character for report exportations into files',
300 options => ';|tabulation|,|/|\|#'
303 uniquefieldrequired => 'variable',
304 variable => 'SubscriptionHistory',
306 forceupdate => { 'explanation' => 1,
309 explanation => 'Define the information level for serials history in OPAC',
311 options => 'simplified|full'
314 uniquefieldrequired => 'variable',
315 variable => 'hidelostitems',
317 forceupdate => { 'explanation' => 1,
319 explanation => 'show or hide "lost" items in OPAC.',
323 uniquefieldrequired => 'variable',
324 variable => 'IndependantBranches',
326 forceupdate => { 'explanation' => 1,
328 explanation => 'Turn Branch independancy management On an Off',
332 uniquefieldrequired => 'variable',
333 variable => 'ReturnBeforeExpiry',
335 forceupdate => { 'explanation' => 1,
337 explanation => 'If Yes, Returndate on issuing can\'t be after borrower card expiry',
341 uniquefieldrequired => 'variable',
342 variable => 'Disable_Dictionary',
344 forceupdate => { 'explanation' => 1,
346 explanation => 'Disables Dictionary buttons if set to yes',
350 uniquefieldrequired => 'variable',
351 variable => 'hide_marc',
353 forceupdate => { 'explanation' => 1,
355 explanation => 'hide marc specific datas like subfield code & indicators to library',
359 uniquefieldrequired => 'variable',
360 variable => 'NotifyBorrowerDeparture',
362 forceupdate => { 'explanation' => 1,
364 explanation => 'Delay before expiry where a notice is sent when issuing',
368 uniquefieldrequired => 'variable',
369 variable => 'OpacPasswordChange',
371 forceupdate => { 'explanation' => 1,
373 explanation => 'Enable/Disable password change in OPAC (disable it when using LDAP auth)',
377 uniquefieldrequired => 'variable',
378 variable => 'useDaysMode',
380 forceupdate => { 'explanation' => 1,
382 explanation => 'How to calculate return dates : Calendar means holidays will be controled, Days means the return date don\'t depend on holidays',
384 options => 'Calendar|Days'
387 uniquefieldrequired => 'variable',
388 variable => 'borrowerMandatoryField',
389 value => 'zipcode|surname',
390 forceupdate => { 'explanation' => 1,
392 explanation => 'List all mandatory fields for borrowers',
396 uniquefieldrequired => 'variable',
397 variable => 'borrowerRelationship',
398 value => 'father|mother,grand-mother',
399 forceupdate => { 'explanation' => 1,
401 explanation => 'The relationships between a guarantor & a guarantee (separated by | or ,)',
405 uniquefieldrequired => 'variable',
406 variable => 'ReservesMaxPickUpDelay',
408 forceupdate => { 'explanation' => 1,
410 explanation => 'Maximum delay to pick up a reserved document',
414 uniquefieldrequired => 'variable',
415 variable => 'TransfersMaxDaysWarning',
417 forceupdate => { 'explanation' => 1,
419 explanation => 'Max delay before considering the transfer has potentialy a problem',
423 uniquefieldrequired => 'variable',
424 variable => 'memberofinstitution',
426 forceupdate => { 'explanation' => 1,
428 explanation => 'Are your patrons members of institutions',
432 uniquefieldrequired => 'variable',
433 variable => 'ReadingHistory',
435 forceupdate => { 'explanation' => 1,
437 explanation => 'Allow reading record info retrievable from issues and oldissues tables',
441 uniquefieldrequired => 'variable',
442 variable => 'IssuingInProcess',
444 forceupdate => { 'explanation' => 1,
446 explanation => 'Allow no debt alert if the patron is issuing item that accumulate debt',
450 uniquefieldrequired => 'variable',
451 variable => 'AutomaticItemReturn',
453 forceupdate => { 'explanation' => 1,
455 explanation => 'This Variable allow or not to return automaticly to his homebranch',
459 uniquefieldrequired => 'variable',
460 variable => 'reviewson',
462 forceupdate => { 'explanation' => 1,
464 explanation => 'Allows patrons to submit reviews from the opac',
471 my %fielddefinitions = (
473 # { field => 'fieldname',
474 # type => 'fieldtype',
492 field => 'booksellerid',
502 field => 'listprice',
503 type => 'varchar(10)',
510 field => 'invoiceprice',
511 type => 'varchar(10)',
520 field => 'borrowernumber',
522 null => 'NULL', # can be null when a borrower is deleted and the foreign key rule executed
528 field => 'itemnumber',
530 null => 'NULL', # can be null when a borrower is deleted and the foreign key rule executed
537 { field => 'B_email',
540 after => 'B_zipcode',
543 field => 'streetnumber', # street number (hidden if streettable table is empty)
549 field => 'streettype', # street table, list builded from a system table
552 after => 'streetnumber',
555 field => 'B_streetnumber', # street number (hidden if streettable table is empty)
561 field => 'B_streettype', # street table, list builded from a system table
564 after => 'B_streetnumber',
573 field => 'address2', # complement address
585 field => 'contactfirstname', # contact's firstname
588 after => 'contactname',
591 field => 'contacttitle', # contact's title
594 after => 'contactfirstname',
598 deletedborrowers => [
599 { field => 'B_email',
602 after => 'B_zipcode',
605 field => 'streetnumber', # street number (hidden if streettable table is empty)
611 field => 'streettype', # street table, list builded from a system table
614 after => 'streetnumber',
617 field => 'B_streetnumber', # street number (hidden if streettable table is empty)
623 field => 'B_streettype', # street table, list builded from a system table
626 after => 'B_streetnumber',
635 field => 'address2', # complement address
647 field => 'contactfirstname', # contact's firstname
650 after => 'contactname',
653 field => 'contacttitle', # contact's title
656 after => 'contactfirstname',
663 type => 'varchar(15)',
670 field => 'branchprinter',
671 type => 'varchar(100)',
680 field => 'category_type',
690 field => 'waitingdate',
702 # { indexname => 'index detail'
706 { indexname => 'shelfnumber',
707 content => 'shelfnumber',
709 { indexname => 'itemnumber',
710 content => 'itemnumber',
714 { indexname => 'biblionumber',
715 content => 'biblionumber',
719 { indexname => 'homebranch',
720 content => 'homebranch',
722 { indexname => 'holdingbranch',
723 content => 'holdingbranch',
727 { indexname => 'PRIMARY',
733 { indexname => 'booksellerid',
734 content => 'booksellerid',
738 { indexname => 'basketno',
739 content => 'basketno',
742 aqorderbreakdown => [
743 { indexname => 'ordernumber',
744 content => 'ordernumber',
746 { indexname => 'bookfundid',
747 content => 'bookfundid',
751 { indexname => 'PRIMARY',
752 content => 'currency',
760 # { key => 'the key in table' (must be indexed)
761 # foreigntable => 'the foreigntable name', # (the parent)
762 # foreignkey => 'the foreign key column(s)' # (in the parent)
763 # onUpdate => 'CASCADE|SET NULL|NO ACTION| RESTRICT',
764 # onDelete => 'CASCADE|SET NULL|NO ACTION| RESTRICT',
768 { key => 'shelfnumber',
769 foreigntable => 'bookshelf',
770 foreignkey => 'shelfnumber',
771 onUpdate => 'CASCADE',
772 onDelete => 'CASCADE',
774 { key => 'itemnumber',
775 foreigntable => 'items',
776 foreignkey => 'itemnumber',
777 onUpdate => 'CASCADE',
778 onDelete => 'CASCADE',
781 # onDelete is RESTRICT on reference tables (branches, itemtype) as we don't want items to be
782 # easily deleted, but branches/itemtype not too easy to empty...
784 { key => 'biblionumber',
785 foreigntable => 'biblio',
786 foreignkey => 'biblionumber',
787 onUpdate => 'CASCADE',
788 onDelete => 'CASCADE',
791 foreigntable => 'itemtypes',
792 foreignkey => 'itemtype',
793 onUpdate => 'CASCADE',
794 onDelete => 'RESTRICT',
798 { key => 'biblioitemnumber',
799 foreigntable => 'biblioitems',
800 foreignkey => 'biblioitemnumber',
801 onUpdate => 'CASCADE',
802 onDelete => 'CASCADE',
804 { key => 'homebranch',
805 foreigntable => 'branches',
806 foreignkey => 'branchcode',
807 onUpdate => 'CASCADE',
808 onDelete => 'RESTRICT',
810 { key => 'holdingbranch',
811 foreigntable => 'branches',
812 foreignkey => 'branchcode',
813 onUpdate => 'CASCADE',
814 onDelete => 'RESTRICT',
817 additionalauthors => [
818 { key => 'biblionumber',
819 foreigntable => 'biblio',
820 foreignkey => 'biblionumber',
821 onUpdate => 'CASCADE',
822 onDelete => 'CASCADE',
826 { key => 'biblionumber',
827 foreigntable => 'biblio',
828 foreignkey => 'biblionumber',
829 onUpdate => 'CASCADE',
830 onDelete => 'CASCADE',
834 { key => 'booksellerid',
835 foreigntable => 'aqbooksellers',
837 onUpdate => 'CASCADE',
838 onDelete => 'RESTRICT',
843 foreigntable => 'aqbasket',
844 foreignkey => 'basketno',
845 onUpdate => 'CASCADE',
846 onDelete => 'CASCADE',
848 { key => 'biblionumber',
849 foreigntable => 'biblio',
850 foreignkey => 'biblionumber',
851 onUpdate => 'SET NULL',
852 onDelete => 'SET NULL',
856 { key => 'listprice',
857 foreigntable => 'currency',
858 foreignkey => 'currency',
859 onUpdate => 'CASCADE',
860 onDelete => 'CASCADE',
862 { key => 'invoiceprice',
863 foreigntable => 'currency',
864 foreignkey => 'currency',
865 onUpdate => 'CASCADE',
866 onDelete => 'CASCADE',
869 aqorderbreakdown => [
870 { key => 'ordernumber',
871 foreigntable => 'aqorders',
872 foreignkey => 'ordernumber',
873 onUpdate => 'CASCADE',
874 onDelete => 'CASCADE',
876 { key => 'bookfundid',
877 foreigntable => 'aqbookfund',
878 foreignkey => 'bookfundid',
879 onUpdate => 'CASCADE',
880 onDelete => 'CASCADE',
884 { key => 'frombranch',
885 foreigntable => 'branches',
886 foreignkey => 'branchcode',
887 onUpdate => 'CASCADE',
888 onDelete => 'CASCADE',
891 foreigntable => 'branches',
892 foreignkey => 'branchcode',
893 onUpdate => 'CASCADE',
894 onDelete => 'CASCADE',
896 { key => 'itemnumber',
897 foreigntable => 'items',
898 foreignkey => 'itemnumber',
899 onUpdate => 'CASCADE',
900 onDelete => 'CASCADE',
904 { key => 'categorycode',
905 foreigntable => 'categories',
906 foreignkey => 'categorycode',
907 onUpdate => 'CASCADE',
908 onDelete => 'CASCADE',
911 foreigntable => 'itemtypes',
912 foreignkey => 'itemtype',
913 onUpdate => 'CASCADE',
914 onDelete => 'CASCADE',
917 issues => [ # constraint is SET NULL : when a borrower or an item is deleted, we keep the issuing record
919 { key => 'borrowernumber',
920 foreigntable => 'borrowers',
921 foreignkey => 'borrowernumber',
922 onUpdate => 'SET NULL',
923 onDelete => 'SET NULL',
925 { key => 'itemnumber',
926 foreigntable => 'items',
927 foreignkey => 'itemnumber',
928 onUpdate => 'SET NULL',
929 onDelete => 'SET NULL',
933 { key => 'borrowernumber',
934 foreigntable => 'borrowers',
935 foreignkey => 'borrowernumber',
936 onUpdate => 'CASCADE',
937 onDelete => 'CASCADE',
939 { key => 'biblionumber',
940 foreigntable => 'biblio',
941 foreignkey => 'biblionumber',
942 onUpdate => 'CASCADE',
943 onDelete => 'CASCADE',
945 { key => 'itemnumber',
946 foreigntable => 'items',
947 foreignkey => 'itemnumber',
948 onUpdate => 'CASCADE',
949 onDelete => 'CASCADE',
951 { key => 'branchcode',
952 foreigntable => 'branches',
953 foreignkey => 'branchcode',
954 onUpdate => 'CASCADE',
955 onDelete => 'CASCADE',
958 borrowers => [ # foreign keys are RESTRICT as we don't want to delete borrowers when a branch is deleted
959 # but prevent deleting a branch as soon as it has 1 borrower !
960 { key => 'categorycode',
961 foreigntable => 'categories',
962 foreignkey => 'categorycode',
963 onUpdate => 'RESTRICT',
964 onDelete => 'RESTRICT',
966 { key => 'branchcode',
967 foreigntable => 'branches',
968 foreignkey => 'branchcode',
969 onUpdate => 'RESTRICT',
970 onDelete => 'RESTRICT',
973 deletedborrowers => [ # foreign keys are RESTRICT as we don't want to delete borrowers when a branch is deleted
974 # but prevent deleting a branch as soon as it has 1 borrower !
975 { key => 'categorycode',
976 foreigntable => 'categories',
977 foreignkey => 'categorycode',
978 onUpdate => 'RESTRICT',
979 onDelete => 'RESTRICT',
981 { key => 'branchcode',
982 foreigntable => 'branches',
983 foreignkey => 'branchcode',
984 onUpdate => 'RESTRICT',
985 onDelete => 'RESTRICT',
989 { key => 'borrowernumber',
990 foreigntable => 'borrowers',
991 foreignkey => 'borrowernumber',
992 onUpdate => 'CASCADE',
993 onDelete => 'CASCADE',
995 { key => 'itemnumber',
996 foreigntable => 'items',
997 foreignkey => 'itemnumber',
998 onUpdate => 'SET NULL',
999 onDelete => 'SET NULL',
1002 auth_tag_structure => [
1003 { key => 'authtypecode',
1004 foreigntable => 'auth_types',
1005 foreignkey => 'authtypecode',
1006 onUpdate => 'CASCADE',
1007 onDelete => 'CASCADE',
1010 # FIXME : don't constraint auth_*_table and auth_word, as they may be replaced by zebra
1015 my %column_change = (
1019 from => 'emailaddress',
1024 from => 'streetaddress',
1026 after => 'initials',
1029 from => 'faxnumber',
1034 from => 'textmessaging',
1040 to => 'contactnote',
1041 after => 'opacnote',
1044 from => 'physstreet',
1049 from => 'streetcity',
1051 after => 'B_address',
1064 from => 'homezipcode',
1071 after => 'B_zipcode',
1076 after => 'dateenrolled',
1079 from => 'guarantor',
1080 to => 'guarantorid',
1081 after => 'contactname',
1084 from => 'textmessaging',
1090 to => 'contactnotes',
1091 after => 'opacnotes',
1094 from => 'altrelationship',
1095 to => 'relationship',
1096 after => 'borrowernotes',
1100 deletedborrowers => [
1102 from => 'emailaddress',
1107 from => 'streetaddress',
1109 after => 'initials',
1112 from => 'faxnumber',
1117 from => 'textmessaging',
1123 to => 'contactnote',
1124 after => 'opacnote',
1127 from => 'physstreet',
1132 from => 'streetcity',
1134 after => 'B_address',
1147 from => 'homezipcode',
1154 after => 'B_zipcode',
1159 after => 'dateenrolled',
1162 from => 'guarantor',
1163 to => 'guarantorid',
1164 after => 'contactname',
1167 from => 'textmessaging',
1173 to => 'contactnotes',
1174 after => 'opacnotes',
1177 from => 'altrelationship',
1178 to => 'relationship',
1179 after => 'borrowernotes',
1185 foreach my $table (keys %column_change) {
1186 $sth = $dbh->prepare("show columns from $table");
1189 while ( ( $column, $type, $null, $key, $default, $extra ) = $sth->fetchrow )
1191 $types{$column}->{type} ="$type";
1192 $types{$column}->{null} = "$null";
1193 $types{$column}->{key} = "$key";
1194 $types{$column}->{default} = "$default";
1195 $types{$column}->{extra} = "$extra";
1197 my $tablerows = $column_change{$table};
1198 foreach my $row ( @$tablerows ) {
1199 if ($types{$row->{from}}->{type}) {
1200 print "altering $table $row->{from} to $row->{to}\n";
1201 # ALTER TABLE `borrowers` CHANGE `faxnumber` `fax` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL
1202 # alter table `borrowers` change `faxnumber` `fax` type text null after phone
1204 "alter table `$table` change `$row->{from}` `$row->{to}` $types{$row->{from}}->{type} ".
1205 ($types{$row->{from}}->{null} eq 'YES'?" NULL":" NOT NULL").
1206 ($types{$row->{from}}->{default}?" default ".$types{$row->{from}}->{default}:"").
1207 "$types{$row->{from}}->{extra} after $row->{after} ";
1214 #-------------------
1219 # Get version of MySQL database engine.
1220 my $mysqlversion = `mysqld --version`;
1221 $mysqlversion =~ /Ver (\S*) /;
1223 if ( $mysqlversion ge '3.23' ) {
1224 print "Could convert to MyISAM database tables...\n" unless $silent;
1227 #---------------------------------
1230 # Collect all tables into a list
1231 $sth = $dbh->prepare("show tables");
1233 while ( my ($table) = $sth->fetchrow ) {
1234 $existingtables{$table} = 1;
1238 # Now add any missing tables
1239 foreach $table ( keys %requiretables ) {
1240 unless ( $existingtables{$table} ) {
1241 print "Adding $table table...\n" unless $silent;
1242 my $sth = $dbh->prepare("create table $table $requiretables{$table}");
1245 print "Error : $sth->errstr \n";
1251 # now drop useless tables
1252 foreach $table ( keys %dropable_table ) {
1253 if ( $existingtables{$table} ) {
1254 print "Dropping unused table $table\n" if $debug and not $silent;
1255 $dbh->do("drop table $table");
1257 print "Error : $dbh->errstr \n";
1262 #---------------------------------
1265 foreach $table ( keys %requirefields ) {
1266 print "Check table $table\n" if $debug and not $silent;
1267 $sth = $dbh->prepare("show columns from $table");
1270 while ( ( $column, $type, $null, $key, $default, $extra ) = $sth->fetchrow )
1272 $types{$column} = $type;
1274 foreach $column ( keys %{ $requirefields{$table} } ) {
1275 print " Check column $column [$types{$column}]\n" if $debug and not $silent;
1276 if ( !$types{$column} ) {
1278 # column doesn't exist
1279 print "Adding $column field to $table table...\n" unless $silent;
1280 $query = "alter table $table
1281 add column $column " . $requirefields{$table}->{$column};
1282 print "Execute: $query\n" if $debug;
1283 my $sti = $dbh->prepare($query);
1286 print "**Error : $sti->errstr \n";
1293 foreach $table ( keys %fielddefinitions ) {
1294 print "Check table $table\n" if $debug;
1295 $sth = $dbh->prepare("show columns from $table");
1298 while ( ( $column, $type, $null, $key, $default, $extra ) = $sth->fetchrow )
1300 $definitions->{$column}->{type} = $type;
1301 $definitions->{$column}->{null} = $null;
1302 $definitions->{$column}->{null} = 'NULL' if $null eq 'YES';
1303 $definitions->{$column}->{key} = $key;
1304 $definitions->{$column}->{default} = $default;
1305 $definitions->{$column}->{extra} = $extra;
1307 my $fieldrow = $fielddefinitions{$table};
1308 foreach my $row (@$fieldrow) {
1309 my $field = $row->{field};
1310 my $type = $row->{type};
1311 my $null = $row->{null};
1312 # $null = 'YES' if $row->{null} eq 'NULL';
1313 my $key = $row->{key};
1314 my $default = $row->{default};
1315 my $null = $row->{null};
1316 # $default="''" unless $default;
1317 my $extra = $row->{extra};
1318 my $def = $definitions->{$field};
1319 my $after = ($row->{after}?" after ".$row->{after}:"");
1321 unless ( $type eq $def->{type}
1322 && $null eq $def->{null}
1323 && $key eq $def->{key}
1324 && $extra eq $def->{extra} )
1326 if ( $null eq '' ) {
1329 if ( $key eq 'PRI' ) {
1330 $key = 'PRIMARY KEY';
1332 unless ( $extra eq 'auto_increment' ) {
1336 # if it's a new column use "add", if it's an old one, use "change".
1338 if ($definitions->{$field}->{type}) {
1339 $action="change $field"
1343 # if it's a primary key, drop the previous pk, before altering the table
1345 if ($key ne 'PRIMARY KEY') {
1346 $sth =$dbh->prepare("alter table $table $action $field $type $null $key $extra default ? $after");
1348 $sth =$dbh->prepare("alter table $table drop primary key, $action $field $type $null $key $extra default ? $after");
1350 $sth->execute($default);
1351 print " alter or create $field in $table\n" unless $silent;
1356 # Populate tables with required data
1359 # synch table and deletedtable.
1360 foreach my $table (('borrowers','items','biblio','biblioitems')) {
1361 my %deletedborrowers;
1362 print "synch'ing $table\n";
1363 $sth = $dbh->prepare("show columns from deleted$table");
1365 while ( my ( $column, $type, $null, $key, $default, $extra ) = $sth->fetchrow ) {
1366 $deletedborrowers{$column}=1;
1368 $sth = $dbh->prepare("show columns from $table");
1371 while ( my ( $column, $type, $null, $key, $default, $extra ) = $sth->fetchrow ) {
1372 unless ($deletedborrowers{$column}) {
1373 my $newcol="alter table deleted$table add $column $type";
1374 if ($null eq 'YES') {
1375 $newcol .= " NULL ";
1377 $newcol .= " NOT NULL ";
1379 $newcol .= "default $default" if $default;
1380 $newcol .= " after $previous" if $previous;
1382 print "creating column $column\n";
1388 foreach my $table ( keys %tabledata ) {
1389 print "Checking for data required in table $table...\n" unless $silent;
1390 my $tablerows = $tabledata{$table};
1391 foreach my $row (@$tablerows) {
1392 my $uniquefieldrequired = $row->{uniquefieldrequired};
1393 my $uniquevalue = $row->{$uniquefieldrequired};
1394 my $forceupdate = $row->{forceupdate};
1397 "select $uniquefieldrequired from $table where $uniquefieldrequired=?"
1399 $sth->execute($uniquevalue);
1401 foreach my $field (keys %$forceupdate) {
1402 if ($forceupdate->{$field}) {
1403 my $sth=$dbh->prepare("update systempreferences set $field=? where $uniquefieldrequired=?");
1404 $sth->execute($row->{$field}, $uniquevalue);
1408 print "Adding row to $table: " unless $silent;
1412 foreach my $field ( keys %$row ) {
1413 next if $field eq 'uniquefieldrequired';
1414 next if $field eq 'forceupdate';
1415 my $value = $row->{$field};
1416 push @values, $value;
1417 print " $field => $value" unless $silent;
1418 $fieldlist .= "$field,";
1419 $placeholders .= "?,";
1421 print "\n" unless $silent;
1422 $fieldlist =~ s/,$//;
1423 $placeholders =~ s/,$//;
1426 "insert into $table ($fieldlist) values ($placeholders)");
1427 $sth->execute(@values);
1433 # check indexes and create them when needed
1435 print "Checking for index required...\n" unless $silent;
1436 foreach my $table ( keys %indexes ) {
1438 # read all indexes from $table
1440 $sth = $dbh->prepare("show index from $table");
1442 my %existingindexes;
1443 while ( my ( $table, $non_unique, $key_name, $Seq_in_index, $Column_name, $Collation, $cardinality, $sub_part, $Packed, $comment ) = $sth->fetchrow ) {
1444 $existingindexes{$key_name} = 1;
1446 # read indexes to check
1447 my $tablerows = $indexes{$table};
1448 foreach my $row (@$tablerows) {
1449 my $key_name=$row->{indexname};
1450 if ($existingindexes{$key_name} eq 1) {
1451 # print "$key_name existing";
1453 print "\tCreating index $key_name in $table\n";
1455 if ($row->{indexname} eq 'PRIMARY') {
1456 $sql = "alter table $table ADD PRIMARY KEY ($row->{content})";
1458 $sql = "alter table $table ADD INDEX $key_name ($row->{content}) $row->{type}";
1461 print "Error $sql : $dbh->err \n" if $dbh->err;
1467 # check foreign keys and create them when needed
1469 print "Checking for foreign keys required...\n" unless $silent;
1470 foreach my $table ( keys %foreign_keys ) {
1472 # read all indexes from $table
1474 $sth = $dbh->prepare("show table status like '$table'");
1476 my $stat = $sth->fetchrow_hashref;
1477 # read indexes to check
1478 my $tablerows = $foreign_keys{$table};
1479 foreach my $row (@$tablerows) {
1480 my $foreign_table=$row->{foreigntable};
1481 if ($stat->{'Comment'} =~/$foreign_table/) {
1482 # print "$foreign_table existing\n";
1484 print "\tCreating foreign key $foreign_table in $table\n";
1485 # first, drop any orphan value in child table
1486 if ($row->{onDelete} ne "RESTRICT") {
1487 my $sql = "delete from $table where $row->{key} not in (select $row->{foreignkey} from $row->{foreigntable})";
1489 print "SQL ERROR: $sql : $dbh->err \n" if $dbh->err;
1491 my $sql="alter table $table ADD FOREIGN KEY $row->{key} ($row->{key}) REFERENCES $row->{foreigntable} ($row->{foreignkey})";
1492 $sql .= " on update ".$row->{onUpdate} if $row->{onUpdate};
1493 $sql .= " on delete ".$row->{onDelete} if $row->{onDelete};
1496 print "====================
1497 An error occured during :
1499 It probably means there is something wrong in your DB : a row ($table.$row->{key}) refers to a value in $row->{foreigntable}.$row->{foreignkey} that does not exist. solve the problem and run updater again (or just the previous SQL statement).
1500 You can find those values with select
1501 \t$table.* from $table where $row->{key} not in (select $row->{foreignkey} from $row->{foreigntable})
1502 ====================\n
1513 # create frameworkcode row in biblio table & fill it with marc_biblio.frameworkcode.
1516 # 1st, get how many biblio we will have to do...
1517 $sth = $dbh->prepare('select count(*) from marc_biblio');
1519 my ($totaltodo) = $sth->fetchrow;
1521 $sth = $dbh->prepare("show columns from biblio");
1524 my $bibliofwexist=0;
1525 while ( ( $column, $type, $null, $key, $default, $extra ) = $sth->fetchrow ){
1526 $bibliofwexist=1 if $column eq 'frameworkcode';
1528 unless ($bibliofwexist) {
1529 print "moving biblioframework to biblio table\n";
1530 $dbh->do('ALTER TABLE `biblio` ADD `frameworkcode` VARCHAR( 4 ) NOT NULL AFTER `biblionumber`');
1531 $sth = $dbh->prepare('select biblionumber,frameworkcode from marc_biblio');
1533 my $sth_update = $dbh->prepare('update biblio set frameworkcode=? where biblionumber=?');
1535 while (my ($biblionumber,$frameworkcode) = $sth->fetchrow) {
1536 $sth_update->execute($frameworkcode,$biblionumber);
1538 print "\r$totaldone / $totaltodo" unless ($totaldone % 100);
1544 # moving MARC data from marc_subfield_table to biblioitems.marc
1546 $sth = $dbh->prepare("show columns from biblioitems");
1550 while ( ( $column, $type, $null, $key, $default, $extra ) = $sth->fetchrow ){
1551 $marcdone=1 if ($type eq 'blob' && $column eq 'marc') ;
1553 unless ($marcdone) {
1554 print "moving MARC record to biblioitems table\n";
1555 # changing marc field type
1556 $dbh->do('ALTER TABLE `biblioitems` CHANGE `marc` `marc` BLOB NULL DEFAULT NULL ');
1557 # adding marc xml, just for convenience
1558 $dbh->do('ALTER TABLE `biblioitems` ADD `marcxml` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL ');
1559 # moving data from marc_subfield_value to biblio
1560 $sth = $dbh->prepare('select bibid,biblionumber from marc_biblio');
1562 my $sth_update = $dbh->prepare('update biblioitems set marc=?, marcxml=? where biblionumber=?');
1564 while (my ($bibid,$biblionumber) = $sth->fetchrow) {
1565 my $record = MARCgetbiblio($dbh,$bibid);
1566 #Force UTF-8 in record leader
1567 $record->encoding('UTF-8');
1568 print $record->as_formatted if ($biblionumber==3902);
1569 $sth_update->execute($record->as_usmarc(),$record->as_xml_record(),$biblionumber);
1571 print "\r$totaldone / $totaltodo" unless ($totaldone % 100);
1577 # at last, remove useless fields
1578 foreach $table ( keys %uselessfields ) {
1579 my @fields = split /,/,$uselessfields{$table};
1582 foreach my $fieldtodrop (@fields) {
1583 $fieldtodrop =~ s/\t//g;
1584 $fieldtodrop =~ s/\n//g;
1586 $sth = $dbh->prepare("show columns from $table");
1588 while ( my ( $column, $type, $null, $key, $default, $extra ) = $sth->fetchrow )
1590 $exists =1 if ($column eq $fieldtodrop);
1593 print "deleting $fieldtodrop field in $table...\n" unless $silent;
1594 my $sth = $dbh->prepare("alter table $table drop $fieldtodrop");
1601 # MOVE all tables TO UTF-8 and innoDB
1602 $sth = $dbh->prepare("show table status");
1604 while ( my $table = $sth->fetchrow_hashref ) {
1605 # if ($table->{Engine} ne 'InnoDB') {
1606 # $dbh->do("ALTER TABLE $table->{Name} TYPE = innodb");
1607 # print "moving $table->{Name} to InnoDB\n";
1609 unless ($table->{Collation} =~ /^utf8/) {
1610 $dbh->do("ALTER TABLE $table->{Name} CONVERT TO CHARACTER SET utf8");
1611 $dbh->do("ALTER TABLE $table->{Name} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci");
1612 # FIXME : maybe a ALTER TABLE tbl_name CONVERT TO CHARACTER SET utf8 would be better, def char set seems to work fine. If any problem encountered, let's try with convert !
1613 print "moving $table->{Name} to utf8\n";
1621 # those 2 subs are a copy of Biblio.pm, version 2.2.4
1622 # they are useful only once, for moving from 2.2 to 3.0
1623 # the MARCgetbiblio & MARCgetitem subs in Biblio.pm
1624 # are still here, but uses other tables
1625 # (the ones that are filled by updatedatabase !)
1630 # Returns MARC::Record of the biblio passed in parameter.
1631 my ( $dbh, $bibid ) = @_;
1632 my $record = MARC::Record->new();
1637 "select bibid,subfieldid,tag,tagorder,tag_indicator,subfieldcode,subfieldorder,subfieldvalue,valuebloblink
1638 from marc_subfield_table
1639 where bibid=? order by tag,tagorder,subfieldorder
1644 "select subfieldvalue from marc_blob_subfield where blobidlink=?");
1645 $sth->execute($bibid);
1646 my $prevtagorder = 1;
1647 my $prevtag = 'XXX';
1649 my $field; # for >=10 tags
1650 my $prevvalue; # for <10 tags
1651 while ( my $row = $sth->fetchrow_hashref ) {
1653 if ( $row->{'valuebloblink'} ) { #---- search blob if there is one
1654 $sth2->execute( $row->{'valuebloblink'} );
1655 my $row2 = $sth2->fetchrow_hashref;
1657 $row->{'subfieldvalue'} = $row2->{'subfieldvalue'};
1659 if ( $row->{tagorder} ne $prevtagorder || $row->{tag} ne $prevtag ) {
1660 $previndicator .= " ";
1661 if ( $prevtag < 10 ) {
1662 if ($prevtag ne '000') {
1663 $record->add_fields( ( sprintf "%03s", $prevtag ), $prevvalue ) unless $prevtag eq "XXX"; # ignore the 1st loop
1665 $record->leader(sprintf("%24s",$prevvalue));
1669 $record->add_fields($field) unless $prevtag eq "XXX";
1672 $prevtagorder = $row->{tagorder};
1673 $prevtag = $row->{tag};
1674 $previndicator = $row->{tag_indicator};
1675 if ( $row->{tag} < 10 ) {
1676 $prevvalue = $row->{subfieldvalue};
1679 $field = MARC::Field->new(
1680 ( sprintf "%03s", $prevtag ),
1681 substr( $row->{tag_indicator} . ' ', 0, 1 ),
1682 substr( $row->{tag_indicator} . ' ', 1, 1 ),
1683 $row->{'subfieldcode'},
1684 $row->{'subfieldvalue'}
1689 if ( $row->{tag} < 10 ) {
1690 $record->add_fields( ( sprintf "%03s", $row->{tag} ),
1691 $row->{'subfieldvalue'} );
1694 $field->add_subfields( $row->{'subfieldcode'},
1695 $row->{'subfieldvalue'} );
1697 $prevtag = $row->{tag};
1698 $previndicator = $row->{tag_indicator};
1702 # the last has not been included inside the loop... do it now !
1703 if ( $prevtag ne "XXX" )
1704 { # check that we have found something. Otherwise, prevtag is still XXX and we
1705 # must return an empty record, not make MARC::Record fail because we try to
1706 # create a record with XXX as field :-(
1707 if ( $prevtag < 10 ) {
1708 $record->add_fields( $prevtag, $prevvalue );
1712 # my $field = MARC::Field->new( $prevtag, "", "", %subfieldlist);
1713 $record->add_fields($field);
1721 # Returns MARC::Record of the biblio passed in parameter.
1722 my ( $dbh, $bibid, $itemnumber ) = @_;
1723 my $record = MARC::Record->new();
1725 # search MARC tagorder
1728 "select tagorder from marc_subfield_table,marc_subfield_structure where marc_subfield_table.tag=marc_subfield_structure.tagfield and marc_subfield_table.subfieldcode=marc_subfield_structure.tagsubfield and bibid=? and kohafield='items.itemnumber' and subfieldvalue=?"
1730 $sth2->execute( $bibid, $itemnumber );
1731 my ($tagorder) = $sth2->fetchrow_array();
1733 #---- TODO : the leader is missing
1736 "select bibid,subfieldid,tag,tagorder,tag_indicator,subfieldcode,subfieldorder,subfieldvalue,valuebloblink
1737 from marc_subfield_table
1738 where bibid=? and tagorder=? order by subfieldcode,subfieldorder
1743 "select subfieldvalue from marc_blob_subfield where blobidlink=?");
1744 $sth->execute( $bibid, $tagorder );
1745 while ( my $row = $sth->fetchrow_hashref ) {
1746 if ( $row->{'valuebloblink'} ) { #---- search blob if there is one
1747 $sth2->execute( $row->{'valuebloblink'} );
1748 my $row2 = $sth2->fetchrow_hashref;
1750 $row->{'subfieldvalue'} = $row2->{'subfieldvalue'};
1752 if ( $record->field( $row->{'tag'} ) ) {
1755 #--- this test must stay as this, because of strange behaviour of mySQL/Perl DBI with char var containing a number...
1756 #--- sometimes, eliminates 0 at beginning, sometimes no ;-\\\
1757 if ( length( $row->{'tag'} ) < 3 ) {
1758 $row->{'tag'} = "0" . $row->{'tag'};
1760 $field = $record->field( $row->{'tag'} );
1763 $field->add_subfields( $row->{'subfieldcode'},
1764 $row->{'subfieldvalue'} );
1765 $record->delete_field($field);
1766 $record->add_fields($field);
1770 if ( length( $row->{'tag'} ) < 3 ) {
1771 $row->{'tag'} = "0" . $row->{'tag'};
1774 MARC::Field->new( $row->{'tag'}, " ", " ",
1775 $row->{'subfieldcode'} => $row->{'subfieldvalue'} );
1776 $record->add_fields($temp);
1787 # Revision 1.146 2006/06/17 03:29:41 rangi
1788 # Variable to allow librarians to switch reviews on or off
1790 # Revision 1.145 2006/06/16 09:45:02 btoumi
1791 # updatedatabase.pl: add change of borrowers table to deletedborrowers table
1792 # deletemem.pl: delete use of warn function
1794 # Revision 1.144 2006/06/08 15:36:31 alaurin
1795 # Add a new system preference 'AutomaticItemReturn' :
1797 # if this prefence is switched on: the document returned in another library than homebranch, the system automaticly transfer the document to his homebranch (with notification for librarian in returns.tmpl) .
1799 # switch off : the document stay in the holdingbranch ...
1802 # - comment C4::acquisition (not using in request.pl).
1803 # - correcting date in request.pl
1804 # -add the new call of function getbranches in request.pl
1806 # Revision 1.143 2006/06/07 02:02:47 bob_lyon
1807 # merging katipo changes...
1809 # adding new preference IssuingInProcess
1811 # Revision 1.142 2006/06/06 23:42:46 bob_lyon
1812 # Merging Katipo changes...
1814 # Adding new system pref where one can still retrieve a correct reading
1815 # record history if one has moved older data from issues to oldissues table
1816 # to speed up issues speed
1818 # Revision 1.141 2006/06/01 03:18:11 rangi
1819 # Adding a new column to the statistics table
1821 # Revision 1.140 2006/05/22 22:40:45 rangi
1822 # Adding new systempreference allowing for the library to add borrowers to institutions (rest homes, parishes, schools, classes etc).
1824 # Revision 1.139 2006/05/19 19:31:29 tgarip1957
1825 # Added new fields to auth_header and auth_subfield_table to allow ZEBRA use of authorities and new MARC framework like structure.
1826 # Authority tables are modified to be compatible with new MARC frameworks. This change is part of Authority Linking & Zebra authorities. Requires change in Mysql database. It will break head unless all changes regarding this is implemented. This warning will take place on all commits regarding this
1828 # Revision 1.138 2006/05/19 16:51:44 alaurin
1829 # update database for :
1830 # - new feature ip and printer management
1831 # adding two fields in branches table (branchip,branchprinter)
1833 # - waiting date : adding one field in reserves table(waiting date) to calculate the Maximum delay to pick up a reserved document when it's available
1835 # new system preference :
1836 # - ReservesMaxPickUpDelay : Maximum delay to pick up a reserved document
1837 # TransfersMaxDaysWarning : Max delay before considering the transfer as potentialy a problem
1839 # Revision 1.137 2006/04/18 09:36:36 plg
1840 # bug fixed: typo fixed in labels and labels_conf tables creation query.
1842 # Revision 1.136 2006/04/17 21:55:33 sushi
1843 # Added 'labels' and 'labels_conf' tables, for spine lable tool.
1845 # Revision 1.135 2006/04/15 02:37:03 tgarip1957
1846 # Marc record should be set to UTF-8 in leader.Force it.
1847 # XML should be with<record> wrappers
1849 # Revision 1.134 2006/04/14 09:37:29 tipaul
1850 # improvements from SAN Ouest Provence :
1851 # * introducing a category_type into categories. It can be A (adult), C (children), P (Professionnal), I (institution/organisation).
1852 # * each category_type has it's own forms to create members.
1853 # * the borrowers table has been heavily modified (many fields changed), to get something more logic & readable
1854 # * reintroducing guarantor/guanrantee system that is now independant from hardcoded C/A for categories
1855 # * updating templates to fit template rules
1857 # (see mail feb, 17 on koha-devel "new features for borrowers" for more details)
1859 # Revision 1.133 2006/04/13 08:36:42 plg
1860 # new: function C4::Date::get_date_format_string_for_DHTMLcalendar based on
1861 # the system preference prefered date format.
1863 # improvement: book fund list and budget list screen redesigned. Filters on
1864 # each field. Columns are not sortable yet. Using DHTML Calendar to fill date
1865 # fields instead of manual filling. Pagination system. From the book fund
1866 # list, you can reach the budget list, filtered on a book fund, or not. A
1867 # budget can be added only from book fund list screen.
1869 # bug fixed: branchcode was missing in table aqbudget.
1871 # bug fixed: when setting a branchcode to a book fund, all associated budgets
1872 # move to this branchcode.
1874 # modification: when adding/modifying budget/fund, MySQL specific "REPLACE..."
1875 # statements replaced by standard SQL compliant statement.
1877 # bug fixed: when adding/modifying a budget, if the book fund is associated to
1878 # a branch, the branch selection is disabled and set to the book fund branch.
1880 # Revision 1.132 2006/04/06 12:37:05 hdl
1881 # Bugfixing : aqbookfund needed a field.
1883 # Revision 1.131 2006/03/03 17:02:22 tipaul
1884 # commit for holidays and news management.
1885 # (some forgotten files)
1887 # Revision 1.130 2006/03/03 16:35:21 tipaul
1888 # commit for holidays and news management.
1890 # Contrib from Tümer Garip (from Turkey) :
1892 # in /tools/ the holiday.pl script let you define holidays (days where the library is closed), branch by branch. You can define 3 types of holidays :
1893 # - single day : only this day is closed
1894 # - repet weekly (like "sunday") : the day is holiday every week
1895 # - repet yearly (like "July, 4") : this day is closed every year.
1897 # You can also put exception :
1898 # - sunday is holiday, but "2006 March, 5th" the library will be open
1900 # The holidays are used for return date calculation : the return date is set to the next date where the library is open. A systempreference (useDaysMode) set ON (Calendar) or OFF (Normal) the calendar calculation.
1902 # Revision 1.129 2006/02/27 18:19:33 hdl
1903 # New table used in overduerules.pl tools page.
1905 # Revision 1.128 2006/01/25 15:16:06 tipaul
1907 # * removing useless tables
1908 # * adding useful indexes
1909 # * altering some columns definitions
1910 # * The goal being to have updater working fine for foreign keys.
1912 # For me it's done, let me know if it works for you. You can see an updated schema of the DB (with constraints) on the wiki
1914 # Revision 1.127 2006/01/24 17:57:17 tipaul
1915 # DB improvements : adding foreign keys on some tables. partial stuff done.
1917 # Revision 1.126 2006/01/06 16:39:42 tipaul
1918 # synch'ing head and rel_2_2 (from 2.2.5, including npl templates)
1919 # Seems not to break too many things, but i'm probably wrong here.
1920 # at least, new features/bugfixes from 2.2.5 are here (tested on some features on my head local copy)
1922 # - removing useless directories (koha-html and koha-plucene)
1924 # Revision 1.125 2006/01/04 15:54:55 tipaul
1925 # utf8 is a : go for beta test in HEAD.
1926 # some explanations :
1927 # - updater/updatedatabase => will transform all tables in innoDB (not related to utf8, just to warn you) AND collate them in utf8 / utf8_general_ci. The SQL command is : ALTER TABLE tablename DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci.
1928 # - *-top.inc will show the pages in utf8
1929 # - THE HARD THING : for me, mysql-client and mysql-server were set up to communicate in iso8859-1, whatever the mysql collation ! Thus, pages were improperly shown, as datas were transmitted in iso8859-1 format ! After a full day of investigation, someone on usenet pointed "set NAMES 'utf8'" to explain that I wanted utf8. I could put this in my.cnf, but if I do that, ALL databases will "speak" in utf8, that's not what we want. Thus, I added a line in Context.pm : everytime a DB handle is opened, the communication is set to utf8.
1930 # - using marcxml field and no more the iso2709 raw marc biblioitems.marc field.
1932 # Revision 1.124 2005/10/27 12:09:05 tipaul
1933 # new features for serial module :
1934 # - the last 5 issues are now shown, and their status can be changed (but not reverted to "waited", as there can be only one "waited")
1935 # - the library can create a "distribution list". this paper contains a list of borrowers (selected from the borrower list, or manually entered), and print it for a given issue. once printed, the sheet can be put on the issue and distributed to every reader on the list (one by one).
1937 # Revision 1.123 2005/10/26 09:13:37 tipaul
1938 # big commit, still breaking things...
1940 # * synch with rel_2_2. Probably the last non manual synch, as rel_2_2 should not be modified deeply.
1941 # * code cleaning (cleaning warnings from perl -w) continued
1943 # Revision 1.122 2005/09/02 14:18:38 tipaul
1944 # new feature : image for itemtypes.
1946 # * run updater/updatedatabase to create imageurl field in itemtypes.
1947 # * go to Koha >> parameters >> itemtypes >> modify (or add) an itemtype. You will see around 20 nice images to choose between (thanks to owen). If you prefer your own image, you also can type a complete url (http://www.myserver.lib/path/to/my/image.gif)
1948 # * go to OPAC, and search something. In the result list, you now have the picture instead of the text itemtype.
1950 # Revision 1.121 2005/08/24 08:49:03 hdl
1951 # Adding a note field in serial table.
1952 # This will allow librarian to mention a note on a peculiar waiting serial number.
1954 # Revision 1.120 2005/08/09 14:10:32 tipaul
1955 # 1st commit to go to zebra.
1956 # don't update your cvs if you want to have a working head...
1958 # this commit contains :
1959 # * updater/updatedatabase : get rid with marc_* tables, but DON'T remove them. As a lot of things uses them, it would not be a good idea for instance to drop them. If you really want to play, you can rename them to test head without them but being still able to reintroduce them...
1960 # * Biblio.pm : modify MARCgetbiblio to find the raw marc record in biblioitems.marc field, not from marc_subfield_table, modify MARCfindframeworkcode to find frameworkcode in biblio.frameworkcode, modify some other subs to use biblio.biblionumber & get rid of bibid.
1961 # * other files : get rid of bibid and use biblionumber instead.
1964 # * does not do anything on zebra yet.
1965 # * if you rename marc_subfield_table, you can't search anymore.
1966 # * you can view a biblio & bibliodetails, go to MARC editor, but NOT save any modif.
1967 # * don't try to add a biblio, it would add data poorly... (don't try to delete either, it may work, but that would be a surprise ;-) )
1969 # IMPORTANT NOTE : you need MARC::XML package (http://search.cpan.org/~esummers/MARC-XML-0.7/lib/MARC/File/XML.pm), that requires a recent version of MARC::Record
1970 # Updatedatabase stores the iso2709 data in biblioitems.marc field & an xml version in biblioitems.marcxml Not sure we will keep it when releasing the stable version, but I think it's a good idea to have something readable in sql, at least for development stage.
1972 # Revision 1.119 2005/08/04 16:07:58 tipaul
1973 # Synch really broke this script...
1975 # Revision 1.118 2005/08/04 16:02:55 tipaul
1976 # oops... error in synch between 2.2 and head
1978 # Revision 1.117 2005/08/04 14:24:39 tipaul
1979 # synch'ing 2.2 and head
1981 # Revision 1.116 2005/08/04 08:55:54 tipaul
1982 # Letters / alert system, continuing...
1984 # * adding a package Letters.pm, that manages Letters & alerts.
1985 # * adding feature : it's now possible to define a "letter" for any subscription created. If a letter is defined, users in OPAC can put an alert on the subscription. When an issue is marked "arrived", all users in the alert will recieve a mail (as defined in the "letter"). This last part (= send the mail) is not yet developped. (Should be done this week)
1986 # * adding feature : it's now possible to "put to an alert" in OPAC, for any serial subscription. The alert is stored in a new table, called alert. An alert can be put only if the librarian has activated them in subscription (and they activate it just by choosing a "letter" to sent to borrowers on new issues)
1987 # * adding feature : librarian can see in borrower detail which alerts they have put, and a user can see in opac-detail which alert they have put too.
1989 # Note that the system should be generic enough to manage any type of alert.
1990 # I plan to extend it soon to virtual shelves : a borrower will be able to put an alert on a virtual shelf, to be warned when something is changed in the virtual shelf (mail being sent once a day by cron, or manually by the shelf owner. Anyway, a mail won't be sent on every change, users would be spammed by Koha ;-) )
1992 # Revision 1.115 2005/08/02 16:15:34 tipaul
1993 # adding 2 fields to letter system :
1994 # * module (acquisition, catalogue...) : it will be usefull to show the librarian only letters he may be interested by.
1995 # * title, that will be used as mail subject.
1997 # Revision 1.114 2005/07/28 15:10:13 tipaul
1998 # Introducing new "Letters" system : Letters will be used everytime you want to sent something to someone (through mail or paper). For example, sending a mail for overdues use letter that you can put as parameters. Sending a mail to a borrower when a suggestion is validated uses a letter too.
1999 # the letter table contains 3 fields :
2000 # * code => the code of the letter
2001 # * name => the complete name of the letter
2002 # * content => the complete text. It's a TEXT field type, so has no limits.
2004 # My next goal now is to work on point 2-I "serial issue alert"
2005 # With this feature, in serials, a user can subscribe the "issue alert". For every issue arrived/missing, a mail is sent to all subscribers of this list. The mail warns the user that the issue is arrive or missing. Will be in head.
2006 # (see mail on koha-devel, 2005/04/07)
2008 # The "serial issue alert" will be the 1st to use this letter system that probably needs some tweaking ;-)
2010 # Once it will be stabilised default letters (in any languages) could be added during installer to help the library begin with this new feature.
2012 # Revision 1.113 2005/07/28 08:38:41 tipaul
2013 # For instance, the return date does not rely on the borrower expiration date. A systempref will be added in Koha, to modify return date calculation schema :
2014 # * ReturnBeforeExpiry = yes => return date can't be after expiry date
2015 # * ReturnBeforeExpiry = no => return date can be after expiry date
2017 # Revision 1.112 2005/07/26 08:19:47 hdl
2018 # Adding IndependantBranches System preference variable in order to manage Branch independancy.
2020 # Revision 1.111 2005/07/25 15:35:38 tipaul
2021 # we have decided that moving to Koha 3.0 requires being already in Koha 2.2.x
2022 # So, the updatedatabase script can highly be cleaned (90% removed).
2023 # Let's play with the new Koha DB structure now ;-)