From d6caca30eba75358981a06e715376214e9823395 Mon Sep 17 00:00:00 2001 From: Filipe Oliveira Date: Tue, 26 Sep 2023 14:07:10 +0100 Subject: [PATCH] CORE-17344 - Update the db schema by following the instructions (#1262) In CORE-15179 , the db table `config` was updated without following the best practices that have been suggested. This commit moves the code responsible for updating the `config` table to the correct file. --- .../schema/config/migration/config-creation-v1.0.xml | 11 ----------- .../schema/config/migration/config-creation-v5.1.xml | 12 ++++++++++++ 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/data/db-schema/src/main/resources/net/corda/db/schema/config/migration/config-creation-v1.0.xml b/data/db-schema/src/main/resources/net/corda/db/schema/config/migration/config-creation-v1.0.xml index a0122f8ec2..392e3808d2 100644 --- a/data/db-schema/src/main/resources/net/corda/db/schema/config/migration/config-creation-v1.0.xml +++ b/data/db-schema/src/main/resources/net/corda/db/schema/config/migration/config-creation-v1.0.xml @@ -113,17 +113,6 @@ - - - - - - - - - - - diff --git a/data/db-schema/src/main/resources/net/corda/db/schema/config/migration/config-creation-v5.1.xml b/data/db-schema/src/main/resources/net/corda/db/schema/config/migration/config-creation-v5.1.xml index cda0f02c7e..d8c6ce6275 100644 --- a/data/db-schema/src/main/resources/net/corda/db/schema/config/migration/config-creation-v5.1.xml +++ b/data/db-schema/src/main/resources/net/corda/db/schema/config/migration/config-creation-v5.1.xml @@ -14,6 +14,18 @@ + + + + + + + + + + + + \ No newline at end of file