Liquibase Overview
Liquibase Overview
Section titled “Liquibase Overview”Quick example (YAML changelog)
Section titled “Quick example (YAML changelog)”databaseChangeLog: - changeSet: id: 001-users author: banky changes: - createTable: tableName: users columns: - column: { name: id, type: BIGINT, autoIncrement: true } - column: { name: email, type: VARCHAR(255) }