|
Lines 4598-4604
if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
Link Here
|
| 4598 |
SetVersion($DBversion); |
4598 |
SetVersion($DBversion); |
| 4599 |
} |
4599 |
} |
| 4600 |
|
4600 |
|
| 4601 |
|
|
|
| 4602 |
$DBversion = "3.07.00.007"; |
4601 |
$DBversion = "3.07.00.007"; |
| 4603 |
if (C4::Context->preference("Version") < TransformToNum($DBversion)) { |
4602 |
if (C4::Context->preference("Version") < TransformToNum($DBversion)) { |
| 4604 |
$dbh->do("ALTER TABLE items MODIFY materials text;"); |
4603 |
$dbh->do("ALTER TABLE items MODIFY materials text;"); |
|
Lines 4654-4659
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
Link Here
|
| 4654 |
print "Upgrade done (Added support for local cover images)\n"; |
4653 |
print "Upgrade done (Added support for local cover images)\n"; |
| 4655 |
SetVersion($DBversion); |
4654 |
SetVersion($DBversion); |
| 4656 |
} |
4655 |
} |
|
|
4656 |
|
| 4657 |
$DBversion = "3.07.00.XXX"; |
| 4658 |
if (C4::Context->preference("Version") < TransformToNum($DBversion)) { |
| 4659 |
print "RELTERMS category available for English-language relator terms. They are not loaded during upgrade but can be easily inserted using the provided marc21_relatorterms.sql SQL script (currently available for en only).\n"; |
| 4660 |
SetVersion($DBversion); |
| 4661 |
} |
| 4662 |
|
| 4657 |
=head1 FUNCTIONS |
4663 |
=head1 FUNCTIONS |
| 4658 |
|
4664 |
|
| 4659 |
=head2 DropAllForeignKeys($table) |
4665 |
=head2 DropAllForeignKeys($table) |
| 4660 |
- |
|
|