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

db.changelog.20191204-drop-application-veto-table.yml Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
databaseChangeLog:
  - changeSet:
      id: drop-application-veto-table
      author: emjburns
      changes:
        - dropTable:
            tableName: application_veto
      rollback:
        - createTable:
            tableName: application_veto
            columns:
              - column:
                  name: application_name
                  type: varchar(255)
                  constraints:
                    primaryKey: true
                    nullable: false
              - modifySql:
                  dbms: mysql
                  append:
                    value: " engine innodb"




© 2015 - 2024 Weber Informatics LLC | Privacy Policy