View | Details | Raw Unified | Return to bug 4858
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_4858-print-notice-charge.pl (-1 / +1 lines)
Lines 13-19 return { Link Here
13
            q{ALTER TABLE categories
13
            q{ALTER TABLE categories
14
              ADD COLUMN print_notice_charge decimal(28,6) DEFAULT 0.00
14
              ADD COLUMN print_notice_charge decimal(28,6) DEFAULT 0.00
15
              COMMENT 'charge for print notices (0.00 = disabled)'
15
              COMMENT 'charge for print notices (0.00 = disabled)'
16
              AFTER reservefee}
16
              AFTER overduenoticerequired}
17
        );
17
        );
18
18
19
        # Add PRINT_NOTICE debit type
19
        # Add PRINT_NOTICE debit type
(-)a/installer/data/mysql/mandatory/sample_notices_message_transports.sql (-2 / +1 lines)
Lines 68-74 values Link Here
68
(13, "email", 0, "circulation", "RETURN_RECALLED_ITEM"),
68
(13, "email", 0, "circulation", "RETURN_RECALLED_ITEM"),
69
(13, "sms",   0, "circulation", "RETURN_RECALLED_ITEM"),
69
(13, "sms",   0, "circulation", "RETURN_RECALLED_ITEM"),
70
(13, "phone",   0, "circulation", "RETURN_RECALLED_ITEM"),
70
(13, "phone",   0, "circulation", "RETURN_RECALLED_ITEM"),
71
(13, 'print', 0, 'circulation', 'RETURN_RECALLED_ITEM');
71
(13, 'print', 0, 'circulation', 'RETURN_RECALLED_ITEM'),
72
(14, "email", 0, "members", "MEMBERSHIP_EXPIRY"),
72
(14, "email", 0, "members", "MEMBERSHIP_EXPIRY"),
73
(14, "sms",   0, "members", "MEMBERSHIP_EXPIRY"),
73
(14, "sms",   0, "members", "MEMBERSHIP_EXPIRY"),
74
(14, "phone",   0, "members", "MEMBERSHIP_EXPIRY");
74
(14, "phone",   0, "members", "MEMBERSHIP_EXPIRY");
75
- 

Return to bug 4858