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 4679-4684
if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
Link Here
|
4679 |
} |
4678 |
} |
4680 |
|
4679 |
|
4681 |
|
4680 |
|
|
|
4681 |
$DBversion = "3.07.00.XXX"; |
4682 |
if (C4::Context->preference("Version") < TransformToNum($DBversion)) { |
4683 |
print "RELTERMS category available for English-, French-, and Spanish-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, es, and fr only).\n"; |
4684 |
SetVersion($DBversion); |
4685 |
} |
4686 |
|
4682 |
=head1 FUNCTIONS |
4687 |
=head1 FUNCTIONS |
4683 |
|
4688 |
|
4684 |
=head2 DropAllForeignKeys($table) |
4689 |
=head2 DropAllForeignKeys($table) |
4685 |
- |
|
|