Bug 11703: (qa-followup) fix update database entry

Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com>

Signed-off-by: Christopher Brannon <cbrannon@cdalibrary.org>
This commit is contained in:
Jonathan Druart 2014-06-26 15:41:39 +02:00 committed by Tomas Cohen Arazi
parent a31cac1693
commit d38474bcc2

View file

@ -8560,13 +8560,13 @@ if ( CheckVersion($DBversion) ) {
SetVersion($DBversion);
}
$DBversion = "3.15.00.XXX";
$DBversion = "3.17.00.XXX";
if ( CheckVersion($DBversion) ) {
$dbh->do(q{
DELETE FROM systempreferences WHERE variable = 'UseTableSortForCirc'
DELETE FROM systempreferences WHERE variable = 'UseTablesortForCirc'
});
print "Upgrade to $DBversion done (Bug 11703 - Convert checkouts table to ajax datatable)\n";
print "Upgrade to $DBversion done (Bug 11703 - Remove UseTablesortForCirc syspref)\n";
SetVersion($DBversion);
}