liquibase/liquibase-4.9.1/examples/yaml/example-changeset-yaml.txt

18 lines
455 B
Plaintext
Raw Normal View History

2022-04-24 01:30:18 +03:00
- changeSet:
id: 1
author: dev
changes:
- createTable:
tableName: person
columns:
- column:
name: id
type: int
autoIncrement: true
constraints:
primaryKey: true
nullable: false
- column:
name: name
type: varchar(255)