Jonathan Druart
1114ba929f
This patch removes the 3 following files for the different languages - message_transport_types.sql - sample_notices_message_attributes.sql - sample_notices_message_transports.sql They were all identical, only one version is kept in installer/data/mysql/mandatory .txt files are removed as well They inserted data for - message_transport_types - message_attributes - message_transport_type Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
9 lines
213 B
SQL
9 lines
213 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);
|
|
|