All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.examples.json.example-changeset-json.txt Maven / Gradle / Ivy

There is a newer version: 4.29.2
Show newest version
"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)"
                }
             }
          ]
       }
    }
 ]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy