mirror of
https://github.com/Example-uPagge/liquibase.git
synced 2024-06-14 12:22:25 +03:00
18 lines
455 B
Plaintext
18 lines
455 B
Plaintext
- 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)
|