Koha/installer/data/mysql/fr-FR/2-Optionel/sample_notices_message_attributes.sql
John Beppu 2302621702 Schema Changes for Email Checkout Slips
- new table, item_circulation_alert_preferences
- new data:
  - letter -- 2 new templates
  - message_transport_types -- feed
  - message_attributes -- Item Check-in and Item Checkout
  - message_transports -- for each attribute and for each transport_type...

Signed-off-by: Daniel Sweeney <daniel.sweeney@liblime.com>
Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
2009-02-04 13:54:13 -06:00

10 lines
240 B
SQL

insert into `message_attributes`
(`message_attribute_id`, message_name, `takes_days`)
values
(1, 'Item DUE', 0),
(2, 'Advance Notice', 1),
(3, 'Upcoming Events', 1),
(4, 'Hold Filled', 0),
(5, 'Item Check-in', 0),
(6, 'Item Checkout', 0);