All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.changelog.20210526-remove-deprecated-verification-fields.yaml Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
databaseChangeLog:
- changeSet:
    id: remove-deprecated-verification-fields
    author: fletch
    changes:
    - sql:
        sql: |
          update environment
          set verifications = json_set(verifications, '$[0].image', verifications ->> '$[0].imageId')
          where json_length(verifications) > 0
          and verifications ->> '$[0].image' is null;
    - sql:
        sql: |
          update environment
          set verifications = json_remove(verifications, '$[0].imageId', '$[0].repository', '$[0].tag')
          where json_length(verifications) > 0;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy