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

liquibase.changelogs.v4_5_0.4.5.0-add-upgraders-table.yml Maven / Gradle / Ivy

There is a newer version: 4.6.0-alpha.2
Show newest version
databaseChangeLog:
  - changeSet:
      id: 4.4.0-add-upgraders-table
      author: GraviteeSource Team
      validCheckSum: ANY
      preConditions:
        - onFail: MARK_RAN
        - not:
            - tableExists:
                tableName: upgraders
      changes:
        - createTable:
            tableName: upgraders
            columns:
              - column: { name: id, type: nvarchar(256), constraints: { nullable: false } }
              - column: { name: applied_at, type: timestamp(6), constraints: { nullable: false } }
        - addPrimaryKey:
            constraintName: pk_upgraders
            columnNames: id
            tableName: upgraders




© 2015 - 2024 Weber Informatics LLC | Privacy Policy