Bug 23049: Update debit_type_code 'Res' to 'RESERVE'
[koha.git] / installer / data / mysql / en / mandatory / account_debit_types.sql
1 INSERT INTO account_debit_types ( code, description, can_be_added_manually, default_amount, is_system ) VALUES
2 ('ACCOUNT', 'Account creation fee', 0, NULL, 1),
3 ('ACCOUNT_RENEW', 'Account renewal fee', 0, NULL, 1),
4 ('HE', 'Hold waiting too long', 0, NULL, 1),
5 ('LOST', 'Lost item', 1, NULL, 1),
6 ('M', 'Manual fee', 1, NULL, 0),
7 ('N', 'New card fee', 1, NULL, 1),
8 ('OVERDUE', 'Overdue fine', 0, NULL, 1),
9 ('PF', 'Lost item processing fee', 0, NULL, 1),
10 ('RENT', 'Rental fee', 0, NULL, 1),
11 ('RENT_DAILY', 'Daily rental fee', 0, NULL, 1),
12 ('RENT_RENEW', 'Renewal of rental item', 0, NULL, 1),
13 ('RENT_DAILY_RENEW', 'Rewewal of daily rental item', 0, NULL, 1),
14 ('RESERVE', 'Hold fee', 0, NULL, 1);