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

db.changelog.20200116-create-agent-lock-table.yml Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
databaseChangeLog:
  - changeSet:
      id: create-agent-lock-table
      author: gyardeni
      changes:
        - createTable:
            tableName: agent_lock
            columns:
              - column:
                  name: lock_name
                  type: varchar(256)
                  constraints:
                    primaryKey: true
                    nullable: false
              - column:
                  name: expiry
                  type: bigint(13)
                  constraints:
                    nullable: false




© 2015 - 2024 Weber Informatics LLC | Privacy Policy