adf0094d66
Adds a new ILL_REQUEST_UPDATE notice which is to be used for the formation of notices informing users of updates to ILL requests. Commit includes database updates and template changes for messaging preferences Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> https://bugs.koha-community.org/show_bug.cgi?id=28909 Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
14 lines
335 B
SQL
14 lines
335 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),
|
|
(9, 'Auto_Renewals', 0),
|
|
(10, 'Hold_Reminder', 0),
|
|
(11, 'Ill_update', 0);
|
|
|