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

(-)a/installer/data/mysql/atomicupdate/bug_14697.perl (+5 lines)
Lines 34-39 if( CheckVersion( $DBversion ) ) { Link Here
34
        ('ClaimReturnedWarningThreshold', '', '', 'Sets the number of return claims past which the librarian will be warned the patron has many return claims', 'Integer');
34
        ('ClaimReturnedWarningThreshold', '', '', 'Sets the number of return claims past which the librarian will be warned the patron has many return claims', 'Integer');
35
    });
35
    });
36
36
37
    $dbh->do(q{
38
        INSERT IGNORE INTO authorised_value_categories ( category_name ) VALUES
39
            ('RETURN_CLAIM_RESOLUTION');
40
    });
41
37
    $dbh->do(q{
42
    $dbh->do(q{
38
        INSERT IGNORE INTO `authorised_values` ( category, authorised_value, lib )
43
        INSERT IGNORE INTO `authorised_values` ( category, authorised_value, lib )
39
        VALUES
44
        VALUES
(-)a/installer/data/mysql/mandatory/auth_val_cat.sql (-1 / +4 lines)
Lines 61-63 INSERT IGNORE INTO authorised_value_categories( category_name ) VALUES Link Here
61
-- For Interlibrary loans
61
-- For Interlibrary loans
62
INSERT IGNORE INTO authorised_value_categories( category_name ) VALUES
62
INSERT IGNORE INTO authorised_value_categories( category_name ) VALUES
63
    ('ILLSTATUS');
63
    ('ILLSTATUS');
64
- 
64
65
-- For Claims returned
66
INSERT IGNORE INTO authorised_value_categories( category_name ) VALUES
67
    ('RETURN_CLAIM_RESOLUTION');

Return to bug 14697