Martin Renvoize
30af45ccf1
This patch adds the data from the update script into the mandatory sql files such that it is also populated at install time. Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
11 lines
261 B
SQL
11 lines
261 B
SQL
insert into `message_attributes`
|
|
(`message_attribute_id`, message_name, `takes_days`)
|
|
values
|
|
(1, 'Item_Due', 0),
|
|
(2, 'Advance_Notice', 1),
|
|
(4, 'Hold_Filled', 0),
|
|
(5, 'Item_Check_in', 0),
|
|
(6, 'Item_Checkout', 0),
|
|
(7, 'Ill_ready', 0),
|
|
(8, 'Ill_unavailable', 0);
|
|
|