ce2561441c
Update and translate sample SQL files of the Ukrainian installer. To test: - Start with an empty database - Install uk-UA - Run the web installer in uk-UA/Ukrainian - Verify all files load without any problems. Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
10 lines
468 B
SQL
10 lines
468 B
SQL
-- Example of currency rates.
|
||
|
||
INSERT INTO `currency` (currency, symbol, timestamp, rate, active, archived) VALUES
|
||
('GRN', 'грн.', '2016-10-31 00:00:00', 1.0, 1, 0),
|
||
('USD', '$', '2016-10-31 00:00:00', 25.49595, 0, 0),
|
||
('EUR', '€', '2016-10-31 00:00:00', 27.84667, 0, 0),
|
||
('RUB', 'руб.', '2016-10-31 00:00:00', 0.40532, 0, 0),
|
||
('GPB', '£', '2016-10-31 00:00:00', 30.97344, 0, 0),
|
||
('PLN', 'zł', '2016-10-31 00:00:00', 6.43006, 0, 0);
|
||
|