fa203e9761
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz> Signed-off-by: Ian Walls <ian.walls@bywatersolutions.com>
11 lines
265 B
SQL
11 lines
265 B
SQL
SET FOREIGN_KEY_CHECKS=0;
|
|
|
|
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);
|
|
SET FOREIGN_KEY_CHECKS=1;
|