Koha/installer/data/mysql/atomicupdate
Owen Leonard 6b25e526bf Bug 27652: (follow-up) Correct typo in database update
This patch adds a missing "SET" in the database update. Before:

   UPDATE systempreferences
   value=REPLACE(value, '|', ',')

Corrected:

   UPDATE systempreferences
   SET value=REPLACE(value, '|', ',')

Signed-off-by: David Nind <david@davidnind.com>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2021-03-09 17:20:47 +01:00
..
bug_27652.perl Bug 27652: (follow-up) Correct typo in database update 2021-03-09 17:20:47 +01:00
README Bug 17356 - update README 2016-10-28 14:47:04 +00:00
skeleton.perl Bug 24131: (RM follow-up) Final Rebase 2020-03-24 10:42:25 +00:00

Please put your database revision files in this folder.
The Release Manager will remove them here when pushing your patches.

To use the skeleton .perl for your update:

% cp installer/data/mysql/atomicupdate/skeleton.perl
installer/data/mysql/atomicupdate/bug_XXXXX.perl

and put your modifications in where noted.