Bug 27947: Add authorised values list in article requests cancellation
[koha.git] / installer / data / mysql / mandatory / auth_val_cat.sql
1 INSERT IGNORE INTO authorised_value_categories( category_name, is_system )
2     VALUES
3     ('', 1),
4     ('Asort1', 1),
5     ('Asort2', 1),
6     ('Bsort1', 1),
7     ('Bsort2', 1),
8     ('SUGGEST', 0),
9     ('SUGGEST_STATUS', 0),
10     ('SUGGEST_FORMAT', 0),
11     ('DAMAGED', 1),
12     ('LOST', 1),
13     ('REPORT_GROUP', 0),
14     ('REPORT_SUBGROUP', 0),
15     ('DEPARTMENT', 0),
16     ('TERM', 0),
17     ('ITEMTYPECAT', 0),
18     ('PAYMENT_TYPE', 0),
19     ('PA_CLASS', 0),
20     ('HOLD_CANCELLATION', 0),
21     ('ROADTYPE', 0),
22     ('AR_CANCELLATION', 0);
23
24 INSERT IGNORE INTO authorised_value_categories( category_name, is_system )
25     VALUES
26     ('branches', 1),
27     ('itemtypes', 1),
28     ('cn_source', 1);
29
30 INSERT IGNORE INTO authorised_value_categories( category_name, is_system )
31     VALUES
32     ('WITHDRAWN', 1),
33     ('RESTRICTED', 0),
34     ('NOT_LOAN', 1),
35     ('CCODE', 1),
36     ('LOC', 1),
37     ('BOR_NOTES', 1),
38     ('OPAC_SUG', 0),
39     ('SIP_MEDIA_TYPE', 0),
40     ('ORDER_CANCELLATION_REASON', 0),
41     ('RELTERMS', 0),
42     ('YES_NO', 0),
43     ('LANG', 0),
44     ('HINGS_UT', 0),
45     ('HINGS_PF', 0),
46     ('HINGS_C', 0),
47     ('HINGS_AS', 0),
48     ('HINGS_RD', 0),
49     ('STACK', 0),
50     ('CONTROL_NUM_SEQUENCE' ,0);
51
52 -- UNIMARC specific?
53 INSERT IGNORE INTO authorised_value_categories( category_name ) VALUES
54     ('ETAT'),
55     ('CAND'),
56     ('COUNTRY'),
57     ('qualif');
58
59 -- For Housebound
60 INSERT IGNORE INTO authorised_value_categories( category_name ) VALUES
61     ('HSBND_FREQ');
62
63 -- For Interlibrary loans
64 INSERT IGNORE INTO authorised_value_categories( category_name ) VALUES
65     ('ILLSTATUS');
66
67 -- For Claims returned
68 INSERT IGNORE INTO authorised_value_categories( category_name ) VALUES
69     ('RETURN_CLAIM_RESOLUTION');
70
71 -- For file uploads
72 INSERT IGNORE INTO authorised_value_categories(  category_name, is_system  ) VALUES
73     ('UPLOAD', 1);