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

(-)a/installer/data/mysql/db_revs/240600018.pl (-5 / +5 lines)
Lines 28-34 return { Link Here
28
        foreach my $row (@rows_to_insert) { $insert_sth->execute( @{$row} ); $count++; }
28
        foreach my $row (@rows_to_insert) { $insert_sth->execute( @{$row} ); $count++; }
29
29
30
        if ($count) {
30
        if ($count) {
31
            say_info( $out, "list_borrowers added to $count users with edit_borrowers" );
31
            say_info( $out, "Added permission 'list_borrowers' to $count users with 'edit_borrowers' permissions" );
32
        }
32
        }
33
33
34
        # Check for 'circulate' or 'circulate > manage_bookings' permission
34
        # Check for 'circulate' or 'circulate > manage_bookings' permission
Lines 44-50 return { Link Here
44
        foreach my $row (@rows_to_insert) { $insert_sth->execute( @{$row} ); $count++; }
44
        foreach my $row (@rows_to_insert) { $insert_sth->execute( @{$row} ); $count++; }
45
45
46
        if ($count) {
46
        if ($count) {
47
            say_info( $out, "list_borrowers added to $count users with manage_bookings" );
47
            say_info( $out, "Added permission 'list_borrowers' to $count users with 'manage_bookings' permissions" );
48
        }
48
        }
49
49
50
        # Check for 'tools' or 'tools > label_creator' permission
50
        # Check for 'tools' or 'tools > label_creator' permission
Lines 60-66 return { Link Here
60
        foreach my $row (@rows_to_insert) { $insert_sth->execute( @{$row} ); $count++; }
60
        foreach my $row (@rows_to_insert) { $insert_sth->execute( @{$row} ); $count++; }
61
61
62
        if ($count) {
62
        if ($count) {
63
            say_info( $out, "list_borrowers added to $count users with label_creator" );
63
            say_info( $out, "Added permission 'list_borrowers' to $count users with 'label_creator' permissions" );
64
        }
64
        }
65
65
66
        # Check for 'serials' or 'serials > routing' permission
66
        # Check for 'serials' or 'serials > routing' permission
Lines 76-82 return { Link Here
76
        foreach my $row (@rows_to_insert) { $insert_sth->execute( @{$row} ); $count++ }
76
        foreach my $row (@rows_to_insert) { $insert_sth->execute( @{$row} ); $count++ }
77
77
78
        if ($count) {
78
        if ($count) {
79
            say_info( $out, "list_borrowers added to $count users with routing" );
79
            say_info( $out, "Added permission 'list_borrowers' to $count users with 'routing' permissions" );
80
        }
80
        }
81
81
82
        # Check for 'acquisitions' or 'acquisitions > order_manage' permission
82
        # Check for 'acquisitions' or 'acquisitions > order_manage' permission
Lines 92-98 return { Link Here
92
        foreach my $row (@rows_to_insert) { $insert_sth->execute( @{$row} ); $count++ }
92
        foreach my $row (@rows_to_insert) { $insert_sth->execute( @{$row} ); $count++ }
93
93
94
        if ($count) {
94
        if ($count) {
95
            say_info( $out, "list_borrowers added to $count users with order_manage" );
95
            say_info( $out, "Added permission 'list_borrowers' to $count users with 'order_manage' permissions" );
96
        }
96
        }
97
    },
97
    },
98
};
98
};
(-)a/installer/data/mysql/db_revs/240600032.pl (-1 / +1 lines)
Lines 14-20 return { Link Here
14
              ALTER TABLE erm_usage_data_providers ADD COLUMN `service_platform` varchar(80) DEFAULT NULL COMMENT 'platform if provider requires it' AFTER `report_types`
14
              ALTER TABLE erm_usage_data_providers ADD COLUMN `service_platform` varchar(80) DEFAULT NULL COMMENT 'platform if provider requires it' AFTER `report_types`
15
          }
15
          }
16
            );
16
            );
17
            say_info( $out, "Added column 'service_platformerm_usage_data_providers'" );
17
            say_success( $out, "Added column 'service_platformerm_usage_data_providers'" );
18
        }
18
        }
19
    },
19
    },
20
};
20
};
(-)a/installer/data/mysql/db_revs/240600033.pl (-1 / +1 lines)
Lines 17-22 return { Link Here
17
        }
17
        }
18
        );
18
        );
19
19
20
        say $out "Added new system preference 'JobsNotificationMethod'";
20
        say_success( $out, "Added new system preference 'JobsNotificationMethod'" );
21
    },
21
    },
22
};
22
};
(-)a/installer/data/mysql/db_revs/240600046.pl (-1 / +1 lines)
Lines 15-20 return { Link Here
15
                ('BOOKING_CANCELLATION', 1)
15
                ('BOOKING_CANCELLATION', 1)
16
            }
16
            }
17
        );
17
        );
18
        say_success( $out, "Added BOOKING_CANCELLATION authorised value category" );
18
        say_success( $out, "Added new authorized value category 'BOOKING_CANCELLATION'" );
19
    },
19
    },
20
};
20
};
(-)a/installer/data/mysql/db_revs/240600047.pl (-3 / +1 lines)
Lines 71-77 return { Link Here
71
            UPDATE `permissions` SET description='Manage Z39.50 and SRU servers, OAI repositories configuration' WHERE code='manage_search_targets';
71
            UPDATE `permissions` SET description='Manage Z39.50 and SRU servers, OAI repositories configuration' WHERE code='manage_search_targets';
72
        }
72
        }
73
        );
73
        );
74
        say_success( $out, "Updated manage_search_targets permission description" );
75
74
76
        $dbh->do(
75
        $dbh->do(
77
            q{
76
            q{
Lines 79-85 return { Link Here
79
            ('OAI-PMH:HarvestEmailReport','','','After an OAI-PMH harvest, send a report email to the email address','Free');
78
            ('OAI-PMH:HarvestEmailReport','','','After an OAI-PMH harvest, send a report email to the email address','Free');
80
        }
79
        }
81
        );
80
        );
82
        say_success( $out, "Added OAI-PMH:HarvestEmailReport system preference" );
81
        say_success( $out, "Added new system preference 'OAI-PMH:HarvestEmailReport'" );
83
82
84
        $dbh->do(
83
        $dbh->do(
85
            q{
84
            q{
86
- 

Return to bug 38448