|
Lines 3-10
truncate message_attributes;
Link Here
|
| 3 |
insert into `message_attributes` |
3 |
insert into `message_attributes` |
| 4 |
(`message_attribute_id`, `message_name`, `takes_days`) |
4 |
(`message_attribute_id`, `message_name`, `takes_days`) |
| 5 |
values |
5 |
values |
| 6 |
(1, 'Одиниця заборгована' , 0), |
6 |
(1, 'Item DUE' , 0), |
| 7 |
(2, 'Попереднє повідомлення', 1), |
7 |
(2, 'Advance Notice' , 1), |
| 8 |
(4, 'Hold Filled' , 0), |
8 |
(4, 'Hold Filled' , 0), |
| 9 |
(5, 'Item Check-in' , 0), |
9 |
(5, 'Item Check-in' , 0), |
| 10 |
(6, 'Item Checkout' , 0); |
10 |
(6, 'Item Checkout' , 0); |
| 11 |
- |
|
|