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

(-)a/installer/data/mysql/atomicupdate/bug_34557.pl (-4 / +4 lines)
Lines 7-17 return { Link Here
7
        my ($args) = @_;
7
        my ($args) = @_;
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
9
9
10
        # Do you stuffs here
10
        $dbh->do(
11
        $dbh->do(q{
11
            q{
12
            INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
12
            INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
13
            ('SCOLoadCheckoutsByDefault','1','','If enabled, load the list of a patrons checkouts when they log in to the Self Checkout','YesNo')
13
            ('SCOLoadCheckoutsByDefault','1','','If enabled, load the list of a patrons checkouts when they log in to the Self Checkout','YesNo')
14
        });
14
        }
15
        );
15
16
16
        say $out "Added new system preference 'SCOLoadCheckoutsByDefault'";
17
        say $out "Added new system preference 'SCOLoadCheckoutsByDefault'";
17
    },
18
    },
18
- 

Return to bug 34557