Koha/installer/data/mysql/mandatory/sample_notices_message_attributes.sql
Andrew Isherwood adf0094d66
Bug 30484: Add ILL update notice
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>
2022-09-23 09:18:45 -03:00

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);