Lines 3-8
Link Here
|
3 |
-- for Koha. |
3 |
-- for Koha. |
4 |
-- |
4 |
-- |
5 |
-- Copyright (C) 2007 LiblimeA |
5 |
-- Copyright (C) 2007 LiblimeA |
|
|
6 |
-- Copyright 2018 Koha Development Team |
6 |
-- |
7 |
-- |
7 |
-- This file is part of Koha. |
8 |
-- This file is part of Koha. |
8 |
-- |
9 |
-- |
Lines 25-36
INSERT INTO `class_sort_rules` (`class_sort_rule`, `description`, `sort_routine`
Link Here
|
25 |
('lcc', 'Default filing rules for LCC', 'LCC'), |
26 |
('lcc', 'Default filing rules for LCC', 'LCC'), |
26 |
('generic', 'Generic call number filing rules', 'Generic'); |
27 |
('generic', 'Generic call number filing rules', 'Generic'); |
27 |
|
28 |
|
|
|
29 |
INSERT INTO `class_split_rules` (`class_split_rule`, `description`, `split_routine`) VALUES |
30 |
('dewey', 'Default splitting rules for DDC', 'Dewey'), |
31 |
('lcc', 'Default splitting rules for LCC', 'LCC'), |
32 |
('generic', 'Generic call number splitting rules', 'Generic'); |
28 |
|
33 |
|
29 |
-- classification schemes or sources |
34 |
-- classification schemes or sources |
30 |
INSERT INTO `class_sources` (`cn_source`, `description`, `used`, `class_sort_rule`) VALUES |
35 |
INSERT INTO `class_sources` (`cn_source`, `description`, `used`, `class_sort_rule`, `class_split_rule`) VALUES |
31 |
('ddc', 'Dewey Decimal Classification', 1, 'dewey'), |
36 |
('ddc', 'Dewey Decimal Classification', 1, 'dewey', 'dewey'), |
32 |
('lcc', 'Library of Congress Classification', 1, 'lcc'), |
37 |
('lcc', 'Library of Congress Classification', 1, 'lcc', 'lcc'), |
33 |
('udc', 'Universal Decimal Classification', 0, 'generic'), |
38 |
('udc', 'Universal Decimal Classification', 0, 'generic', 'generic'), |
34 |
('sudocs', 'SuDoc Classification (U.S. GPO)', 0, 'generic'), |
39 |
('sudocs', 'SuDoc Classification (U.S. GPO)', 0, 'generic', 'generic'), |
35 |
('anscr', 'ANSCR (Sound Recordings)', 0, 'generic'), |
40 |
('anscr', 'ANSCR (Sound Recordings)', 0, 'generic', 'generic'), |
36 |
('z', 'Other/Generic Classification Scheme', 0, 'generic'); |
41 |
('z', 'Other/Generic Classification Scheme', 0, 'generic', 'generic'); |