db.changelog.20210305-fix-artifacts.yml Maven / Gradle / Ivy
databaseChangeLog:
- changeSet:
id: remove-tag-strategy-from-branch-based-artifacts
author: lpollo
changes:
- sql:
sql: >
update delivery_artifact
set details = json_remove(details, '$.tagVersionStrategy')
where type = 'docker'
and details -> '$.from' is not null
and details -> '$.tagVersionStrategy' is not null