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