Koha/installer/data/mysql/uk-UA/marcflavour/marc21/optional/fieldmapping.sql
Serhij Dubyk {Сергій Дубик} ce2561441c Bug 18537 - Update Ukrainian installer sample files for 17.05
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>
2017-08-30 14:59:02 -03:00

10 lines
614 B
SQL

-- koha to keyword mapping
-- id -- unique identifier assigned by Koha (auto_increment)
-- field -- keyword to be mapped to (ex. subtitle)
-- frameworkcode -- foreign key from the biblio_framework table to link this mapping to a specific framework (default '')
-- fieldcode -- marc field number to map to this keyword
-- subfieldcode -- marc subfield associated with the fieldcode to map to this keyword
INSERT INTO fieldmapping
( field, frameworkcode, fieldcode, subfieldcode) VALUES
('subtitle', 'CF', '245', 'p'),
('subtitle', 'SER', '490', 'v');