From f4132dc668d7360b760b770b2234449e480dcc52 Mon Sep 17 00:00:00 2001 From: Audra Wathen Date: Tue, 20 Feb 2024 10:27:58 -0700 Subject: [PATCH] mrsbluerose: removes duplicate work in DB scripts - Maryam's script 202312071653 is implemented before Audra's script 202401291541, making Audra's script unnecessary and causing SQL errors - caused by confusion in rebuild. Both accomplish most of the same work renaming the Connect table's header columns with the underscore format --- .../db/migration/changelog-202401291541.xml | 16 ---------------- .../resources/db/migration/changelog-master.xml | 1 - 2 files changed, 17 deletions(-) delete mode 100644 src/main/resources/db/migration/changelog-202401291541.xml diff --git a/src/main/resources/db/migration/changelog-202401291541.xml b/src/main/resources/db/migration/changelog-202401291541.xml deleted file mode 100644 index ed6d15be..00000000 --- a/src/main/resources/db/migration/changelog-202401291541.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - ALTER TABLE connections RENAME COLUMN `requestingUserId` TO requesting_user_id; - ALTER TABLE connections RENAME COLUMN `toBeConnectedWithUserId` TO to_be_connected_with_user_id; - ALTER TABLE connections RENAME COLUMN `createdAt` TO created_at; - - - - diff --git a/src/main/resources/db/migration/changelog-master.xml b/src/main/resources/db/migration/changelog-master.xml index 3656dbc2..8ba1f6d1 100644 --- a/src/main/resources/db/migration/changelog-master.xml +++ b/src/main/resources/db/migration/changelog-master.xml @@ -45,7 +45,6 @@ -