|
Lines 19-28
return {
Link Here
|
| 19 |
|
19 |
|
| 20 |
say $out "Added column 'borrower_attribute_types.opac_mandatory'"; |
20 |
say $out "Added column 'borrower_attribute_types.opac_mandatory'"; |
| 21 |
|
21 |
|
| 22 |
$dbh->do(q{ |
22 |
$dbh->do( |
|
|
23 |
q{ |
| 23 |
UPDATE borrower_attribute_types |
24 |
UPDATE borrower_attribute_types |
| 24 |
SET opac_mandatory = 1 WHERE mandatory = 1; |
25 |
SET opac_mandatory = 1 WHERE mandatory = 1; |
| 25 |
}); |
26 |
} |
|
|
27 |
); |
| 26 |
say $out "Update opac_mandatory to match mandatory column"; |
28 |
say $out "Update opac_mandatory to match mandatory column"; |
| 27 |
} |
29 |
} |
| 28 |
}, |
30 |
}, |