From 444dd28b02d3bd65dc03eb4b2ce7ec8925a14712 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 8 Mar 2021 11:32:06 +0100 Subject: [PATCH] Bug 27623: Add PLN currency to custom.sql MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Renvoize Signed-off-by: Victor Grousset/tuxayo Signed-off-by: Joonas Kylmälä Signed-off-by: Jonathan Druart Signed-off-by: Jonathan Druart --- .../data/mysql/localization/pl-PL/custom.sql | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 installer/data/mysql/localization/pl-PL/custom.sql diff --git a/installer/data/mysql/localization/pl-PL/custom.sql b/installer/data/mysql/localization/pl-PL/custom.sql new file mode 100644 index 0000000000..58e867d2ae --- /dev/null +++ b/installer/data/mysql/localization/pl-PL/custom.sql @@ -0,0 +1,20 @@ +-- +-- System preferences that differ from the global defaults +-- +-- This file is part of Koha. +-- +-- Koha is free software; you can redistribute it and/or modify it +-- under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 3 of the License, or +-- (at your option) any later version. +-- +-- Koha is distributed in the hope that it will be useful, but +-- WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with Koha; if not, see . + +UPDATE `currency` SET `active` = 0; +INSERT INTO `currency` (`currency`, `rate`, `symbol`, `active`) VALUES ('PLN', 1.0, 'zł', '1'); -- 2.39.5