diff --git a/.version b/.version index 79f82f6b..69478d18 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.58.0 +1.58.1 diff --git a/CHANGELOG.md b/CHANGELOG.md index a2980df8..f0659600 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.58.1] - 2022-08-31 + +### Fixed + +- CASMHMS-5726 - Fixed syntax error in migration down step 22 + ## [1.58.0] - 2022-08-11 ### Fixed diff --git a/migrations/postgres/22_remove_v1_version20.down.sql b/migrations/postgres/22_remove_v1_version20.down.sql index 12c68fec..a31e17cb 100644 --- a/migrations/postgres/22_remove_v1_version20.down.sql +++ b/migrations/postgres/22_remove_v1_version20.down.sql @@ -26,7 +26,7 @@ BEGIN; ALTER TABLE reservations - ADD COLUMN IF NOT EXISTS v1_lock_id; + ADD COLUMN IF NOT EXISTS v1_lock_id UUID; CREATE TABLE IF NOT EXISTS component_locks ( "id" UUID PRIMARY KEY,