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

db.changelog.20200520-add-cluster-lock-table.yml Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
databaseChangeLog:
- changeSet:
    id: add-cluster-lock-table
    author: fletch
    changes:
    - createTable:
        tableName: cluster_lock
        columns:
        - column:
            name: id
            type: varchar(255)
            constraints:
              primaryKey: true
              nullable: false
        - column:
            name: held_by
            type: varchar(255)
            constraints:
              nullable: false
        - column:
            name: expires_at
            type: bigint(13)
            constraints:
              nullable: false
    - modifySql:
        dbms: mysql
        append:
          value: " engine innodb"




© 2015 - 2024 Weber Informatics LLC | Privacy Policy