Bugzilla – Attachment 159965 Details for
Bug 35413
Terminology: differentiate issues for vendor issues and serials
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35413: DB update
Bug-35413-DB-update.patch (text/plain), 1.17 KB, created by
Tomás Cohen Arazi (tcohen)
on 2023-12-18 13:07:19 UTC
(
hide
)
Description:
Bug 35413: DB update
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2023-12-18 13:07:19 UTC
Size:
1.17 KB
patch
obsolete
>From d7ef756e7c40dbbd1628da1f946ae93eeecde57f Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Mon, 18 Dec 2023 10:05:39 -0300 >Subject: [PATCH] Bug 35413: DB update > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >--- > .../data/mysql/atomicupdate/bug_35413.pl | 20 +++++++++++++++++++ > 1 file changed, 20 insertions(+) > create mode 100755 installer/data/mysql/atomicupdate/bug_35413.pl > >diff --git a/installer/data/mysql/atomicupdate/bug_35413.pl b/installer/data/mysql/atomicupdate/bug_35413.pl >new file mode 100755 >index 00000000000..ef1672819b3 >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug_35413.pl >@@ -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'"; >+ }, >+}; >-- >2.43.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 35413
:
159303
|
159319
|
159964
| 159965