From 886d2ddf8fce4c60bc3e2edfe1858945b440f13b Mon Sep 17 00:00:00 2001 From: Jason Cihelka Date: Fri, 2 Jun 2023 12:41:38 -0700 Subject: [PATCH] Update migration-v1.3-v1.4.md Update instructions --- docs/migrations/migration-v1.3-v1.4.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/migrations/migration-v1.3-v1.4.md b/docs/migrations/migration-v1.3-v1.4.md index 8cfa41b..4674252 100644 --- a/docs/migrations/migration-v1.3-v1.4.md +++ b/docs/migrations/migration-v1.3-v1.4.md @@ -5,6 +5,8 @@ If you have an existing database from DDM V1.3, you will need to *manually* migr Note: This migration is only necessary as we did not have the automatic migration framework in place prior to this release. Thus, we are using manual SQL to ensure database consistency. Going forward, this will not be required as the **baseline schema established in V1.4 allows for automatic migrations. ** +**Before running the Manual SQL**, please start up DDM V1.4.0, allow it to apply some schema changes, then shut it down and proceed. + ## Manual SQL Please execute the following SQL statements in your DDM database. @@ -78,4 +80,4 @@ ALTER TABLE contents_new RENAME TO contents; ```sql UPDATE replications SET ss_is_self_service = is_self_service; ALTER TABLE replications RENAME COLUMN is_self_service TO deprecated_is_self_service; -``` \ No newline at end of file +```