Bug 7022: Move sample_notices* sql files from optional to mandatory
[koha.git] / installer / data / mysql / de-DE / 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 (2, 'email', 0, 'circulation', 'PREDUE'),
7 (2, 'email', 1, 'circulation', 'PREDUEDGST'),
8 (4, 'email', 0, 'reserves',    'HOLD'),
9 (1, 'sms',   0, 'circulation', 'DUE'),
10 (1, 'sms',   1, 'circulation', 'DUEDGST'),
11 (2, 'sms',   0, 'circulation', 'PREDUE'),
12 (2, 'sms',   1, 'circulation', 'PREDUEDGST'),
13 (4, 'sms',   0, 'reserves',    'HOLD'),
14 (5, 'email', 0, 'circulation', 'CHECKIN'),
15 (5, 'sms',   0, 'circulation', 'CHECKIN'),
16 (6, 'email', 0, 'circulation', 'CHECKOUT'),
17 (6, 'sms',   0, 'circulation', 'CHECKOUT');