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

(-)a/installer/data/mysql/atomicupdate/bug-18532.perl (-6 / +5 lines)
Lines 24-39 if( CheckVersion( $DBversion ) ) { Link Here
24
    $dbh->do( q{
24
    $dbh->do( q{
25
        INSERT IGNORE INTO `message_attributes`
25
        INSERT IGNORE INTO `message_attributes`
26
            (`message_attribute_id`, message_name, `takes_days`)
26
            (`message_attribute_id`, message_name, `takes_days`)
27
        VALUES (7, 'Auto_Renewals', 0)
27
        VALUES (9, 'Auto_Renewals', 0)
28
    });
28
    });
29
29
30
    $dbh->do( q{
30
    $dbh->do( q{
31
        INSERT IGNORE INTO `message_transports`
31
        INSERT IGNORE INTO `message_transports`
32
            (`message_attribute_id`, `message_transport_type`, `is_digest`, `letter_module`, `letter_code`)
32
            (`message_attribute_id`, `message_transport_type`, `is_digest`, `letter_module`, `letter_code`)
33
        VALUES  (7, 'email', 0, 'circulation', 'AUTO_RENEWALS'),
33
        VALUES  (9, 'email', 0, 'circulation', 'AUTO_RENEWALS'),
34
                (7, 'sms', 0, 'circulation', 'AUTO_RENEWALS'),
34
                (9, 'sms', 0, 'circulation', 'AUTO_RENEWALS'),
35
                (7, 'email', 1, 'circulation', 'AUTO_RENEWALS_DGST'),
35
                (9, 'email', 1, 'circulation', 'AUTO_RENEWALS_DGST'),
36
                (7, 'sms', 1, 'circulation', 'AUTO_RENEWALS_DGST')
36
                (9, 'sms', 1, 'circulation', 'AUTO_RENEWALS_DGST')
37
    });
37
    });
38
38
39
    $dbh->do( q{
39
    $dbh->do( q{
40
- 

Return to bug 18532