Bug 27947: Add authorised values list in article requests cancellation
[koha.git] / installer / data / mysql / mandatory / sample_notices_message_transports.sql
1 insert into `message_transports`
2 (`message_attribute_id`, `message_transport_type`, `is_digest`, `letter_module`, `letter_code`)
3 values
4 (1, 'email', 0, 'circulation', 'DUE'),
5 (1, 'email', 1, 'circulation', 'DUEDGST'),
6 (1, 'sms',   0, 'circulation', 'DUE'),
7 (1, 'sms',   1, 'circulation', 'DUEDGST'),
8 (1, 'phone', 0, 'circulation', 'DUE'),
9 (1, 'phone', 1, 'circulation', 'DUEDGST'),
10 (2, 'email', 0, 'circulation', 'PREDUE'),
11 (2, 'email', 1, 'circulation', 'PREDUEDGST'),
12 (2, 'sms',   0, 'circulation', 'PREDUE'),
13 (2, 'sms',   1, 'circulation', 'PREDUEDGST'),
14 (2, 'phone', 0, 'circulation', 'PREDUE'),
15 (2, 'phone', 1, 'circulation', 'PREDUEDGST'),
16 (2, 'itiva', 0, 'circulation', 'PREDUE'),
17 (2, 'itiva', 1, 'circulation', 'PREDUEDGST'),
18 (4, 'email', 0, 'reserves',    'HOLD'),
19 (4, 'sms',   0, 'reserves',    'HOLD'),
20 (4, 'phone', 0, 'reserves',    'HOLD'),
21 (4, 'itiva', 0, 'reserves',    'HOLD'),
22 (5, 'email', 0, 'circulation', 'CHECKIN'),
23 (5, 'sms',   0, 'circulation', 'CHECKIN'),
24 (5, 'phone', 0, 'circulation', 'CHECKIN'),
25 (6, 'email', 0, 'circulation', 'CHECKOUT'),
26 (6, 'sms',   0, 'circulation', 'CHECKOUT'),
27 (6, 'phone', 0, 'circulation', 'CHECKOUT'),
28 (7, 'email', 0, 'ill', 'ILL_PICKUP_READY'),
29 (7, 'sms',   0, 'ill', 'ILL_PICKUP_READY'),
30 (7, 'phone', 0, 'ill', 'ILL_PICKUP_READY'),
31 (8, 'email', 0, 'ill', 'ILL_REQUEST_UNAVAIL'),
32 (8, 'sms',   0, 'ill', 'ILL_REQUEST_UNAVAIL'),
33 (8, 'phone', 0, 'ill', 'ILL_REQUEST_UNAVAIL'),
34 (9, 'email', 0, 'circulation', 'AUTO_RENEWALS'),
35 (9, 'sms',   0, 'circulation', 'AUTO_RENEWALS'),
36 (9, 'email', 1, 'circulation', 'AUTO_RENEWALS_DGST'),
37 (9, 'sms',   1, 'circulation', 'AUTO_RENEWALS_DGST');