Comment 6 for bug 1612752

Revision history for this message
Bill Erickson (berick) wrote :

Eyeballed the code and the only thing that caught my attention were the permission.perm_list description updates introduced here:

http://git.evergreen-ils.org/?p=working/Evergreen.git;a=commitdiff;h=52722a04c20c24e5119911468c08b415eebeb5dd#patch3

We normally try to avoid changing configurable text in the DB if it's been locally modified, using something along the lines of:

UPDATE permission.perm_list
SET description = '<NEW DESCRIPTION>'
WHERE code = '<SOME CODE>'
    AND description = '<OLD STOCK DESCRIPTION>';