Bug 35413: DB update
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
parent
b6c71bea4e
commit
cfa077652c
1 changed files with 20 additions and 0 deletions
20
installer/data/mysql/atomicupdate/bug_35413.pl
Executable file
20
installer/data/mysql/atomicupdate/bug_35413.pl
Executable file
|
@ -0,0 +1,20 @@
|
|||
use Modern::Perl;
|
||||
|
||||
return {
|
||||
bug_number => "35413",
|
||||
description => "Terminology: Manage issues (issue_manage)",
|
||||
up => sub {
|
||||
my ($args) = @_;
|
||||
my ( $dbh, $out ) = @$args{qw(dbh out)};
|
||||
|
||||
$dbh->do(
|
||||
q{
|
||||
UPDATE permissions
|
||||
SET description='Manage vendor issues'
|
||||
WHERE code='issue_manage'
|
||||
}
|
||||
);
|
||||
|
||||
say $out "Updated permission 'issue_manage' description with 'Manage vendor issues'";
|
||||
},
|
||||
};
|
Loading…
Reference in a new issue