From 36b6eeceb849a9e6aa7e2333f0c2a7951c621a7c Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Tue, 27 Jun 2023 14:25:44 +0000 Subject: [PATCH] Bug 33379: Remove virtualshelfcontents.flags This field is unused. A historic leftover from 2000-2010. Test plan: Run dbrev. Run prove t/db_dependent/Koha/Virtualshel* Signed-off-by: Marcel de Rooy Signed-off-by: Lucas Gass Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi --- installer/data/mysql/atomicupdate/bug33379.pl | 18 ++++++++++++++++++ installer/data/mysql/kohastructure.sql | 1 - 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100755 installer/data/mysql/atomicupdate/bug33379.pl diff --git a/installer/data/mysql/atomicupdate/bug33379.pl b/installer/data/mysql/atomicupdate/bug33379.pl new file mode 100755 index 0000000000..4f3ba3d6a1 --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug33379.pl @@ -0,0 +1,18 @@ +use Modern::Perl; + +return { + bug_number => 33379, + description => "Remove unused column virtualshelfcontents.flags", + up => sub { + my ($args) = @_; + my ( $dbh, $out ) = @$args{qw(dbh out)}; + if ( column_exists( 'virtualshelfcontents', 'flags' ) ) { + $dbh->do( + q{ +ALTER TABLE virtualshelfcontents DROP COLUMN flags; + } + ); + say $out "Removed column 'virtualshelfcontents.flags'"; + } + }, +}; diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 26552e76cd..270cca9f50 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -6016,7 +6016,6 @@ DROP TABLE IF EXISTS `virtualshelfcontents`; CREATE TABLE `virtualshelfcontents` ( `shelfnumber` int(11) NOT NULL DEFAULT 0 COMMENT 'foreign key linking to the virtualshelves table, defines the list that this record has been added to', `biblionumber` int(11) NOT NULL DEFAULT 0 COMMENT 'foreign key linking to the biblio table, defines the bib record that has been added to the list', - `flags` int(11) DEFAULT NULL, `dateadded` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'date and time this bib record was added to the list', `borrowernumber` int(11) DEFAULT NULL COMMENT 'borrower number that created this list entry (only the first one is saved: no need for use in/as key)', KEY `shelfnumber` (`shelfnumber`), -- 2.39.2