Bugzilla – Attachment 161742 Details for
Bug 35473
Core bookings and room reservations plugin tables clash
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35473: Handle room reservations plugin conflict
Bug-35473-Handle-room-reservations-plugin-conflict.patch (text/plain), 3.47 KB, created by
Martin Renvoize (ashimema)
on 2024-02-05 09:15:17 UTC
(
hide
)
Description:
Bug 35473: Handle room reservations plugin conflict
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2024-02-05 09:15:17 UTC
Size:
3.47 KB
patch
obsolete
>From 7452f583d232d54f993da3be4c89e40a0fffdb3b Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Thu, 11 Jan 2024 10:24:04 +0000 >Subject: [PATCH] Bug 35473: Handle room reservations plugin conflict > >We now look for the existance of the room reservations 'bookings' table >prior to attempting to install the core bookings table and migrate it in >the same way the upstream plugin does before proceeding with installing >the core bookings tables. > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > installer/data/mysql/db_revs/230600061.pl | 49 +++++++++++++++++++++++ > 1 file changed, 49 insertions(+) > >diff --git a/installer/data/mysql/db_revs/230600061.pl b/installer/data/mysql/db_revs/230600061.pl >index 31c2cc43bda..b32763dbcec 100755 >--- a/installer/data/mysql/db_revs/230600061.pl >+++ b/installer/data/mysql/db_revs/230600061.pl >@@ -6,6 +6,55 @@ return { > up => sub { > my ($args) = @_; > my ( $dbh, $out ) = @$args{qw(dbh out)}; >+ # Handle cases of roombookings plugin existing >+ if ( TableExists('bookings') ) { >+ if ( column_exists( 'bookings', 'bookingid' ) ) { >+ my $old_rooms_table = 'booking_rooms'; >+ my $old_rooms_index = 'bookingrooms_idx'; >+ my $old_bookings_table = 'bookings'; >+ my $old_bookings_index = 'bookingbookings_idx'; >+ my $old_equipment_table = 'booking_equipment'; >+ my $old_equipment_index = 'bookingequipment_idx'; >+ my $old_roomequipment_table = 'booking_room_equipment'; >+ my $old_roomequipment_index = 'bookingroomequipment_idx'; >+ >+ my $prefix = 'bws_rr_'; >+ our $rooms_table = $prefix . $old_rooms_table; >+ our $rooms_index = $prefix . $old_rooms_index; >+ our $bookings_table = $prefix . $old_bookings_table; >+ our $bookings_index = $prefix . $old_bookings_index; >+ our $equipment_table = $prefix . $old_equipment_table; >+ our $equipment_index = $prefix . $old_equipment_index; >+ our $roomequipment_table = $prefix . $old_roomequipment_table; >+ our $roomequipment_index = $prefix . $old_roomequipment_index; >+ >+ $dbh->do( >+ qq{ >+ RENAME TABLE >+ $old_rooms_table TO $rooms_table, >+ $old_bookings_table TO $bookings_table, >+ $old_equipment_table TO $equipment_table, >+ $old_roomequipment_table TO $roomequipment_table, >+ } >+ ); >+ $dbh->do( >+"ALTER TABLE $rooms_table RENAME INDEX $old_rooms_index TO $rooms_index" >+ ); >+ $dbh->do( >+"ALTER TABLE $bookings_table RENAME INDEX $old_bookings_index TO $bookings_index" >+ ); >+ $dbh->do( >+"ALTER TABLE $equipment_table RENAME INDEX $old_equipment_index TO $equipment_index" >+ ); >+ $dbh->do( >+"ALTER TABLE $roomequipment_table RENAME INDEX $old_roomequipment_index TO $roomequipment_index" >+ ); >+ >+ say "Migrated room reservations plugin to it's own namespace"; >+ say "You MUST upgrade to the latest room reservation plugin to continue using it"; >+ } >+ } >+ > if ( !TableExists('bookings') ) { > $dbh->do( > q{ >-- >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 35473
:
160827
|
160879
|
161043
|
161742
|
161743
|
163159
|
163160