Bug 14783: (follow-up) Fix problematic db_rev
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
ae986b992d
commit
ab1e0a5d6a
1 changed files with 3 additions and 3 deletions
|
@ -13,9 +13,9 @@ return {
|
|||
});
|
||||
|
||||
$dbh->do(q{
|
||||
UPDATE systempreferences SET value = (SELECT CASE WHEN value = 1 THEN 'intransit' ELSE '' END
|
||||
FROM systempreferences
|
||||
WHERE variable = 'OPACInTransitHoldPickupLocationChange')
|
||||
UPDATE systempreferences
|
||||
SET value=(SELECT CASE WHEN value=1 THEN 'intransit' ELSE '' END FROM systempreferences WHERE variable='OPACInTransitHoldPickupLocationChange')
|
||||
WHERE variable='OPACAllowUserToChangeBranch'
|
||||
});
|
||||
|
||||
say $out "Added new system preference 'OPACAllowUserToChangeBranch'";
|
||||
|
|
Loading…
Reference in a new issue