db.changelog.20200116-create-agent-lock-table.yml Maven / Gradle / Ivy
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