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

31 lines
667 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)"
}
}
]
}
}
]
}