Bugzilla – Attachment 180330 Details for
Bug 37054
Allow for custom library colors in the staff interface
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37054: Amend DBUpdate
Bug-37054-Amend-DBUpdate.patch (text/plain), 2.73 KB, created by
Lucas Gass (lukeg)
on 2025-04-02 13:02:33 UTC
(
hide
)
Description:
Bug 37054: Amend DBUpdate
Filename:
MIME Type:
Creator:
Lucas Gass (lukeg)
Created:
2025-04-02 13:02:33 UTC
Size:
2.73 KB
patch
obsolete
>From d5d1f5805f50f1a905ab4e0222d67dc06420af56 Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >Date: Wed, 2 Apr 2025 12:54:58 +0000 >Subject: [PATCH] Bug 37054: Amend DBUpdate > >--- > .../data/mysql/atomicupdate/bug_37054_add_branchcolor.pl | 9 ++++----- > installer/data/mysql/kohastructure.sql | 4 ++-- > 2 files changed, 6 insertions(+), 7 deletions(-) > >diff --git a/installer/data/mysql/atomicupdate/bug_37054_add_branchcolor.pl b/installer/data/mysql/atomicupdate/bug_37054_add_branchcolor.pl >index 8bb54539bc5..669ea04751f 100755 >--- a/installer/data/mysql/atomicupdate/bug_37054_add_branchcolor.pl >+++ b/installer/data/mysql/atomicupdate/bug_37054_add_branchcolor.pl >@@ -3,21 +3,20 @@ use Koha::Installer::Output qw(say_warning say_failure say_success say_info); > > return { > bug_number => "37054", >- description => "Add branches.branchcolor", >+ description => "Add branches.library_color", > up => sub { > my ($args) = @_; > my ( $dbh, $out ) = @$args{qw(dbh out)}; > >- if ( !column_exists( 'branches', 'branchcolor' ) ) { >+ if ( !column_exists( 'branches', 'library_color' ) ) { > $dbh->do( > q{ > ALTER TABLE branches >- ADD COLUMN `branchcolor` varchar(16) DEFAULT 0 COMMENT 'defines the branch color' >+ ADD COLUMN `library_color` varchar(16) DEFAULT 0 COMMENT 'defines the branch color' > AFTER `opacusercss` > } > ); > } >- say $out "Added column 'branch.branchcolor'"; >- >+ say $out "Added column 'branch.library_color'"; > }, > }; >diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql >index 5e747b7be7c..52dc4dac9d4 100644 >--- a/installer/data/mysql/kohastructure.sql >+++ b/installer/data/mysql/kohastructure.sql >@@ -1677,7 +1677,7 @@ CREATE TABLE `branches` ( > `public` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'whether this library should show in the opac', > `opacuserjs` longtext DEFAULT NULL COMMENT 'branch specific javascript for the OPAC', > `opacusercss` longtext DEFAULT NULL COMMENT 'branch specific css for the OPAC', >- `branchcolor` varchar(16) DEFAULT NULL COMMENT 'branch specific color', >+ `library_color` varchar(16) DEFAULT NULL COMMENT 'library specific color', > PRIMARY KEY (`branchcode`) > ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; > /*!40101 SET character_set_client = @saved_cs_client */; >@@ -6797,4 +6797,4 @@ CREATE TABLE `zebraqueue` ( > /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; > /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; > >--- Dump completed on 2024-11-25 12:13:27 >\ No newline at end of file >+-- Dump completed on 2024-11-25 12:13:27 >-- >2.39.5
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 37054
:
167577
|
167578
|
167579
|
167590
|
167595
|
167596
|
167597
|
167598
|
167609
|
167612
|
167613
|
167614
|
167615
|
167616
|
167618
|
167625
|
171221
|
171222
|
171223
|
171224
|
171225
|
171226
|
175991
|
175992
|
175993
|
175994
|
175995
|
175996
|
176014
|
176015
|
176016
|
176615
|
176616
|
180329
| 180330 |
180331
|
180332
|
180333
|
180334