Browse Source

Bug 8085: Follow-up: Update to 'Hold Slip' for existing installations

Title and description are updated separately, in case that the
library has changed one of them when editing the slip.

To test:
- Verify that you have a letter named 'Reserve Slip' in your database
- Run the database update
- Verify the slip has been renamed correctly

Signed-off-by: Frédéric Demians <f.demians@tamil.fr>
  Job done on a Koha English version. It won't hurt other langages

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
new_12478_elasticsearch
Katrin Fischer 9 years ago
committed by Kyle M Hall
parent
commit
77ddc257e6
  1. 3
      installer/data/mysql/atomicupdate/bug_8085_rename_reserve_slip.sql

3
installer/data/mysql/atomicupdate/bug_8085_rename_reserve_slip.sql

@ -0,0 +1,3 @@
-- Rename 'Reserve slip' to 'Holds slip' to match Koha's terminology
UPDATE letter SET name = "Hold Slip" WHERE name = "Reserve Slip";
UPDATE letter SET title = "Hold Slip" WHERE title = "Reserve Slip";
Loading…
Cancel
Save