Bugzilla – Attachment 162702 Details for
Bug 35067
Allow authorised value parent category so categories can be linked and shown together
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35067: Add authorised_value_categories.parent column
Bug-35067-Add-authorisedvaluecategoriesparent-colu.patch (text/plain), 2.13 KB, created by
Aleisha Amohia
on 2024-03-03 21:16:36 UTC
(
hide
)
Description:
Bug 35067: Add authorised_value_categories.parent column
Filename:
MIME Type:
Creator:
Aleisha Amohia
Created:
2024-03-03 21:16:36 UTC
Size:
2.13 KB
patch
obsolete
>From 6834a64d61a4eafb2740516a4ddb3f1ff5f7b8b0 Mon Sep 17 00:00:00 2001 >From: Aleisha Amohia <aleishaamohia@hotmail.com> >Date: Wed, 21 Feb 2024 22:34:49 +0000 >Subject: [PATCH] Bug 35067: Add authorised_value_categories.parent column > >--- > ...thorised_value_categories.parent_column.pl | 20 +++++++++++++++++++ > installer/data/mysql/kohastructure.sql | 1 + > 2 files changed, 21 insertions(+) > create mode 100755 installer/data/mysql/atomicupdate/bug_35067_-_add_authorised_value_categories.parent_column.pl > >diff --git a/installer/data/mysql/atomicupdate/bug_35067_-_add_authorised_value_categories.parent_column.pl b/installer/data/mysql/atomicupdate/bug_35067_-_add_authorised_value_categories.parent_column.pl >new file mode 100755 >index 00000000000..5bb84fd99e8 >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug_35067_-_add_authorised_value_categories.parent_column.pl >@@ -0,0 +1,20 @@ >+use Modern::Perl; >+ >+return { >+ bug_number => "35067", >+ description => "Allow authorised value parent category so categories can be linked and shown together", >+ up => sub { >+ my ($args) = @_; >+ my ( $dbh, $out ) = @$args{qw(dbh out)}; >+ >+ if ( !column_exists( 'authorised_value_categories', 'parent' ) ) { >+ $dbh->do( >+ q{ >+ ALTER TABLE authorised_value_categories ADD COLUMN `parent` varchar(32) DEFAULT NULL AFTER `is_system` >+ } >+ ); >+ >+ say $out "Added column 'authorised_value_categories.parent'"; >+ } >+ }, >+}; >diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql >index 16310f0f449..396e92cb6c4 100644 >--- a/installer/data/mysql/kohastructure.sql >+++ b/installer/data/mysql/kohastructure.sql >@@ -1008,6 +1008,7 @@ DROP TABLE IF EXISTS `authorised_value_categories`; > CREATE TABLE `authorised_value_categories` ( > `category_name` varchar(32) NOT NULL DEFAULT '', > `is_system` tinyint(1) DEFAULT 0, >+ `parent` varchar(32) DEFAULT NULL, > PRIMARY KEY (`category_name`) > ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; > /*!40101 SET character_set_client = @saved_cs_client */; >-- >2.30.2
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 35067
:
162312
|
162326
|
162327
|
162328
|
162329
|
162355
|
162356
|
162357
|
162358
| 162702 |
162703
|
162704
|
162705
|
162706
|
162708