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

(-)a/installer/data/mysql/atomicupdate/bug_14180.pl (+15 lines)
Line 0 Link Here
1
use Modern::Perl;
2
3
return {
4
    bug_number => "14180",
5
    description => "Add system preference AlwaysLoadCheckoutsTable",
6
    up => sub {
7
        my ($args) = @_;
8
        my ($dbh, $out) = @$args{qw(dbh out)};
9
        # Do you stuffs here
10
        $dbh->do(q{
11
            INSERT IGNORE INTO systempreferences (`variable`,`value`,`options`,`explanation`,`type`)
12
            VALUES ('AlwaysLoadCheckoutsTable','0','','Option to always load the checkout table','YesNo')
13
        });
14
    },
15
};
(-)a/installer/data/mysql/mandatory/sysprefs.sql (-1 / +1 lines)
Lines 53-58 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
53
('alphabet','A B C D E F G H I J K L M N O P Q R S T U V W X Y Z',NULL,'Alphabet than can be expanded into browse links, e.g. on Home > Patrons','free'),
53
('alphabet','A B C D E F G H I J K L M N O P Q R S T U V W X Y Z',NULL,'Alphabet than can be expanded into browse links, e.g. on Home > Patrons','free'),
54
('AlternateHoldingsField','',NULL,'The MARC field/subfield that contains alternate holdings information for bibs taht do not have items attached (e.g. 852abchi for libraries converting from MARC Magician).','free'),
54
('AlternateHoldingsField','',NULL,'The MARC field/subfield that contains alternate holdings information for bibs taht do not have items attached (e.g. 852abchi for libraries converting from MARC Magician).','free'),
55
('AlternateHoldingsSeparator','',NULL,'The string to use to separate subfields in alternate holdings displays.','free'),
55
('AlternateHoldingsSeparator','',NULL,'The string to use to separate subfields in alternate holdings displays.','free'),
56
('AlwaysLoadCheckoutsTable','0','','Option to always load the checkout table','Yes/No'),
56
('AmazonAssocTag','','','See:  http://aws.amazon.com','free'),
57
('AmazonAssocTag','','','See:  http://aws.amazon.com','free'),
57
('AmazonCoverImages','0','','Display Cover Images in staff interface from Amazon Web Services','YesNo'),
58
('AmazonCoverImages','0','','Display Cover Images in staff interface from Amazon Web Services','YesNo'),
58
('AmazonLocale','US','US|CA|DE|FR|IN|JP|UK','Use to set the Locale of your Amazon.com Web Services','Choice'),
59
('AmazonLocale','US','US|CA|DE|FR|IN|JP|UK','Use to set the Locale of your Amazon.com Web Services','Choice'),
59
- 

Return to bug 14180