Bug 2742 Correct language names in install
[koha.git] / installer / data / mysql / it-IT / necessari / sample_notices_message_transports.sql
1 SET FOREIGN_KEY_CHECKS=0;
2
3 insert into `message_transports`
4 (`message_attribute_id`, `message_transport_type`, `is_digest`, `letter_module`, `letter_code`)
5 values
6 (1, 'email', 0, 'circulation', 'DUE'),
7 (1, 'email', 1, 'circulation', 'DUEDGST'),
8 (2, 'email', 0, 'circulation', 'PREDUE'),
9 (2, 'email', 1, 'circulation', 'PREDUEDGST'),
10 (3, 'email', 0, 'circulation', 'EVENT'),
11 (4, 'email', 0, 'reserves',    'HOLD'),
12 (1, 'sms',   0, 'circulation', 'DUE'),
13 (1, 'sms',   1, 'circulation', 'DUEDGST'),
14 (2, 'sms',   0, 'circulation', 'PREDUE'),
15 (2, 'sms',   1, 'circulation', 'PREDUEDGST'),
16 (3, 'sms',   0, 'circulation', 'EVENT'),
17 (4, 'sms',   0, 'reserves',    'HOLD'),
18 (5, 'email', 0, 'circulation', 'CHECKIN'),
19 (5, 'sms',   0, 'circulation', 'CHECKIN'),
20 (6, 'email', 0, 'circulation', 'CHECKOUT'),
21 (6, 'sms',   0, 'circulation', 'CHECKOUT');
22
23 SET FOREIGN_KEY_CHECKS=1;