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

liquibase.changelogs.v4_0_20.schema-dashboards.yml Maven / Gradle / Ivy

databaseChangeLog:
  - changeSet:
      id: 4.0.20-dashboards-check-column-exists
      author: GraviteeSource Team
      runOnChange: true
      preConditions:
       onFail: MARK_RAN
       not:
         columnExists:
           tableName: ${gravitee_prefix}dashboards
           columnName: type
      changes:
        # ################
        # Dashboards changes
        # ################
        - addColumn:
            tableName: ${gravitee_prefix}dashboards
            columns:
              - column:
                  name: type
                  type: nvarchar(64)
        - sql:
            sql: update ${gravitee_prefix}dashboards set type = reference_type
        - addNotNullConstraint:
            tableName: ${gravitee_prefix}dashboards
            columnName: type
            columnDataType: nvarchar(64)
            defaultNullValue: PLATFORM
        - sql:
            sql: update ${gravitee_prefix}dashboards set reference_type = 'ENVIRONMENT'




© 2015 - 2025 Weber Informatics LLC | Privacy Policy