Bug 25534: (QA follow-up) Add AV category
[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
23 INSERT IGNORE INTO authorised_value_categories( category_name, is_system )
24     VALUES
25     ('branches', 1),
26     ('itemtypes', 1),
27     ('cn_source', 1);
28
29 INSERT IGNORE INTO authorised_value_categories( category_name, is_system )
30     VALUES
31     ('WITHDRAWN', 1),
32     ('RESTRICTED', 0),
33     ('NOT_LOAN', 1),
34     ('CCODE', 1),
35     ('LOC', 1),
36     ('BOR_NOTES', 1),
37     ('OPAC_SUG', 0),
38     ('SIP_MEDIA_TYPE', 0),
39     ('ORDER_CANCELLATION_REASON', 0),
40     ('RELTERMS', 0),
41     ('YES_NO', 0),
42     ('LANG', 0),
43     ('HINGS_UT', 0),
44     ('HINGS_PF', 0),
45     ('HINGS_C', 0),
46     ('HINGS_AS', 0),
47     ('HINGS_RD', 0),
48     ('STACK', 0),
49     ('CONTROL_NUM_SEQUENCE' ,0);
50
51 -- UNIMARC specific?
52 INSERT IGNORE INTO authorised_value_categories( category_name ) VALUES
53     ('ETAT'),
54     ('CAND'),
55     ('COUNTRY'),
56     ('qualif');
57
58 -- For Housebound
59 INSERT IGNORE INTO authorised_value_categories( category_name ) VALUES
60     ('HSBND_FREQ');
61
62 -- For Interlibrary loans
63 INSERT IGNORE INTO authorised_value_categories( category_name ) VALUES
64     ('ILLSTATUS');
65
66 -- For Claims returned
67 INSERT IGNORE INTO authorised_value_categories( category_name ) VALUES
68     ('RETURN_CLAIM_RESOLUTION');