Jonathan Druart
444dd28b02
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net> Signed-off-by: Joonas Kylmälä <joonas.kylmala@helsinki.fi> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
20 lines
851 B
SQL
20 lines
851 B
SQL
--
|
|
-- 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 <http://www.gnu.org/licenses>.
|
|
|
|
UPDATE `currency` SET `active` = 0;
|
|
INSERT INTO `currency` (`currency`, `rate`, `symbol`, `active`) VALUES ('PLN', 1.0, 'zł', '1');
|