databaseChangeLog: - changeSet: id: 1-create-product author: ankurm changes: - createTable: tableName: product columns: - column: name: id type: bigint autoIncrement: true constraints: primaryKey: true - column: name: sku type: varchar(64) constraints: nullable: false unique: true - column: name: price_cents type: bigint constraints: nullable: false - changeSet: id: 2-seed-product author: ankurm changes: - insert: tableName: product columns: - column: name: sku value: WIDGET-1 - column: name: price_cents valueNumeric: 1999