From 05eecfc219acb525da6d7e337b1b37be7634e523 Mon Sep 17 00:00:00 2001 From: John Davis Date: Thu, 30 May 2024 11:33:36 -0400 Subject: [PATCH 1/2] Add revision tags for TS migration in 23.1 --- lib/tool_shed/webapp/model/migrations/dbscript.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tool_shed/webapp/model/migrations/dbscript.py b/lib/tool_shed/webapp/model/migrations/dbscript.py index e9a3a5da3494..c045cbb04904 100644 --- a/lib/tool_shed/webapp/model/migrations/dbscript.py +++ b/lib/tool_shed/webapp/model/migrations/dbscript.py @@ -26,8 +26,8 @@ # then using 231 as a partial revision identifier like `sh manage_toolshed_db.sh upgrade 231` # will map to release 23.1 instead of revision 231xxxxxxxxx. REVISION_TAGS = { - "release_23.1": "base", - "23.1": "base", + "release_23.1": "1b5bf427db25", + "23.1": "1b5bf427db25", } From 579884db75d14b2ae7cbfb67270b5d015c157b80 Mon Sep 17 00:00:00 2001 From: John Davis Date: Fri, 31 May 2024 12:25:40 -0400 Subject: [PATCH 2/2] Add TS db revision tags for 23.2 --- lib/tool_shed/webapp/model/migrations/dbscript.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/tool_shed/webapp/model/migrations/dbscript.py b/lib/tool_shed/webapp/model/migrations/dbscript.py index c045cbb04904..6875069871eb 100644 --- a/lib/tool_shed/webapp/model/migrations/dbscript.py +++ b/lib/tool_shed/webapp/model/migrations/dbscript.py @@ -28,6 +28,8 @@ REVISION_TAGS = { "release_23.1": "1b5bf427db25", "23.1": "1b5bf427db25", + "release_23.2": "1b5bf427db25", + "23.2": "1b5bf427db25", }