Bug 24899: (follow-up) Add markup comments
[koha.git] / installer / data / mysql / account_credit_types.sql
blob178b98b1c6a3400e0b8a5242f18d2d35e1cf3d5e
1 INSERT INTO account_credit_types ( code, description, can_be_added_manually, is_system ) VALUES
2 ('PAYMENT', 'Payment', 0, 1),
3 ('WRITEOFF', 'Writeoff', 0, 1),
4 ('FORGIVEN', 'Forgiven', 1, 1),
5 ('CREDIT', 'Credit', 1, 1),
6 ('DISCOUNT', 'A discount applied to a patrons fine', 0, 1),
7 ('REFUND', 'A refund applied to a patrons fine', 0, 1),
8 ('LOST_FOUND', 'Lost item fee refund', 0, 1),
9 ('PURCHASE', 'Purchase', 0, 1);
11 INSERT INTO authorised_values (category,authorised_value,lib) VALUES ('PAYMENT_TYPE','CASH','Cash');