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

db.changelog.20200313-json-columns.yml Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
databaseChangeLog:
  - changeSet:
      id: json-columns
      author: lpollo
      changes:
        - modifyDataType:
            tableName: delivery_artifact
            columnName: details
            newDataType: json
        - modifyDataType:
            tableName: environment
            columnName: constraints
            newDataType: json
        - modifyDataType:
            tableName: environment
            columnName: notifications
            newDataType: json
        - modifyDataType:
            tableName: environment_artifact_constraint
            columnName: attributes
            newDataType: json
        - modifyDataType:
            tableName: event
            columnName: json
            newDataType: json
        - modifyDataType:
            tableName: resource
            columnName: spec
            newDataType: json
        - modifyDataType:
            tableName: resource
            columnName: metadata
            newDataType: json

      rollback:
        - modifyDataType:
            tableName: delivery_artifact
            columnName: details
            newDataType: longtext
        - modifyDataType:
            tableName: environment
            columnName: constraints
            newDataType: longtext
        - modifyDataType:
            tableName: environment
            columnName: notifications
            newDataType: longtext
        - modifyDataType:
            tableName: environment_artifact_constraint
            columnName: attributes
            newDataType: longtext
        - modifyDataType:
            tableName: event
            columnName: json
            newDataType: longtext
        - modifyDataType:
            tableName: resource
            columnName: spec
            newDataType: longtext
        - modifyDataType:
            tableName: resource
            columnName: metadata
            newDataType: longtext




© 2015 - 2024 Weber Informatics LLC | Privacy Policy