Correcting authoritytypecode values where my typo used the number '0' as
[koha.git] / installer / data / en / mandatory / auth-types.sql
1 -- *******************************************************
2 -- KOHA 3.0 MARC 21 STANDARD DEFAULT AUTHORITY FRAMEWORKS 
3 --                     AUTHORITY TYPES                    
4 --                                                        
5 --                  PRETEST VERSION 0.0.4                 
6 --                       2007-08-21                       
7 --                                                        
8 --                         edited                         
9 --                   by thd for LibLime                   
10 --                                                        
11 --                       BASED UPON                       
12 --                                                        
13 --   KOHA MARC 21 STANDARD DEFAULT AUTHORITY FRAMEWORKS   
14 --                                                        
15 --                  PRETEST VERSION 0.0.4                 
16 --                       2007-08-21                       
17 --                                                        
18 --  original default requiring greater user customisation 
19 --               created by a few Koha Hands              
20 --                 guided by Paul POULAIN                 
21 --                                                        
22 --       revised and greatly enlarged to completion,      
23 --            well not quite complete yet today           
24 --        but close enough for someone to have use,       
25 --                   by thd for LibLime                   
26 -- *******************************************************
27
28
29 SET FOREIGN_KEY_CHECKS = 0;
30
31
32 -- ******************************************************
33 -- KOHA DEFAULT MARC 21 AUTHORITY TYPE. 
34 -- ******************************************************
35
36 -- This authority type includes all fields and subfieds used by any 
37 -- authority type. 
38
39 INSERT INTO `auth_types` VALUES ('', 'Default', '', '');
40
41
42 -- ******************************************************
43 -- KOHA SUPPORTED STANDARD MARC 21 AUTHORITY TYPES. 
44 -- ******************************************************
45
46 -- These authority types are supported for for guiding the cataloguer to 
47 -- fill authorised values in Koha MARC bibliographic editor.
48
49
50 INSERT INTO `auth_types` VALUES ('PERSO_NAME', 'Personal Name', '100', 'Personal Names');
51 INSERT INTO `auth_types` VALUES ('CORPO_NAME', 'Corporate Name', '110', 'Corporate Names');
52 INSERT INTO `auth_types` VALUES ('MEETI_NAME', 'Meeting Name', '111', 'Meeting Name');
53 INSERT INTO `auth_types` VALUES ('UNIF_TITLE', 'Uniform Title', '130', 'Uniform Title');
54 INSERT INTO `auth_types` VALUES ('CHRON_TERM', 'Chronological Term', '148', 'Chronological Term');
55 INSERT INTO `auth_types` VALUES ('TOPIC_TERM', 'Topical Term', '150', 'Topical Term');
56 INSERT INTO `auth_types` VALUES ('GEOGR_NAME', 'Geographic Name', '151', 'Geographic Name');
57 INSERT INTO `auth_types` VALUES ('GENRE/FORM', 'Genre/Form Term', '155', 'Genre/Form Term');
58
59
60 -- ******************************************************
61 -- KOHA UNSUPPORTED STANDARD MARC 21 AUTHORITY TYPES. 
62 -- ******************************************************
63
64 -- These authority types are only supported for guiding the cataloguer to 
65 -- fill authorised values in the Koha MARC bibliographic editor to the 
66 -- extent that they have already been included in a primary authority type, 
67 -- therefore, they have not yet been specified.
68 --
69 -- Minimal primary authorities including subdivisions may currently be 
70 -- built by a script which uses the values in bibliographic records but 
71 -- include no tracings and references which are necessarily not present 
72 -- in bibliographic records.
73
74
75 -- INSERT INTO `auth_types` VALUES ('TOPIC_SUBD', 'General Topical Term Subdivision', '180', 'General Topical Term Subdivision');
76 -- INSERT INTO `auth_types` VALUES ('GEOGR_SUBD', 'Geographic Subdivision', '181', 'Geographic Subdivision');
77 -- INSERT INTO `auth_types` VALUES ('CHRON_SUBD', 'Chronological Subdivision', '182', 'Chronological Subdivision');
78 -- INSERT INTO `auth_types` VALUES ('FORM_SUBDI', 'Form Subdivision', '185', 'Form Subdivision');
79