Bug 5646: Translated sql files break messaging
[koha.git] / installer / data / mysql / it-IT / necessari / sample_notices_message_attributes.sql
1 SET FOREIGN_KEY_CHECKS=0;
2
3 insert into `message_attributes`
4 (`message_attribute_id`, message_name, `takes_days`)
5 values
6 (1, 'Item DUE', 0),
7 (2, 'Advance Notice', 1),
8 (4, 'Hold Filled', 0),
9 (5, 'Item Check-in', 0),
10 (6, 'Item Checkout', 0);
11
12 SET FOREIGN_KEY_CHECKS=1;