Bugzilla – Attachment 173671 Details for
Bug 34324
Merge OPACProblemReport and CatalogConcern functions
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34324: Add opac_problem to source enum of tickets
Bug-34324-Add-opacproblem-to-source-enum-of-ticket.patch (text/plain), 1.14 KB, created by
Martin Renvoize (ashimema)
on 2024-10-29 15:46:17 UTC
(
hide
)
Description:
Bug 34324: Add opac_problem to source enum of tickets
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2024-10-29 15:46:17 UTC
Size:
1.14 KB
patch
obsolete
>From c340d2334d574816dd0a4dfe4133539997c3300f Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Wed, 20 Dec 2023 16:22:37 +0000 >Subject: [PATCH] Bug 34324: Add opac_problem to source enum of tickets > >--- > installer/data/mysql/atomicupdate/bug_34324.pl | 15 +++++++++++++++ > 1 file changed, 15 insertions(+) > create mode 100644 installer/data/mysql/atomicupdate/bug_34324.pl > >diff --git a/installer/data/mysql/atomicupdate/bug_34324.pl b/installer/data/mysql/atomicupdate/bug_34324.pl >new file mode 100644 >index 00000000000..3052637ce51 >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug_34324.pl >@@ -0,0 +1,15 @@ >+use Modern::Perl; >+ >+return { >+ bug_number => "34324", >+ description => "Add opac_problem to source enum of tickets table", >+ up => sub { >+ my ($args) = @_; >+ my ( $dbh, $out ) = @$args{qw(dbh out)}; >+ >+ $dbh->do( >+ "ALTER TABLE `tickets` MODIFY COLUMN `source` enum('catalog','opac_problem') NOT NULL DEFAULT 'catalog' COMMENT 'source of ticket'" >+ ); >+ say $out "Added opac_problem to source enum of 'tickets.source'"; >+ }, >+}; >-- >2.47.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 34324
:
160199
|
160200
|
160201
|
160202
|
160203
|
160204
|
160205
|
160206
|
173580
|
173581
|
173582
|
173583
|
173584
|
173585
|
173586
|
173587
| 173671 |
173672
|
173673
|
173674
|
173675
|
173676
|
173677
|
173678
|
173679
|
173680