96479a2af6
This patch adds RETURN_RECALLED_ITEM and PICKUP_RECALLED_ITEM SMS notices and makes recalls notices available to be configured in patron messaging preferences. Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
15 lines
390 B
SQL
15 lines
390 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),
|
|
(12, 'Recall_Waiting', 0),
|
|
(13, 'Recall_Requested', 0);
|