Update Liquibase and Flyway docs and test other changelog formats
Closes gh-5741pull/5773/head
parent
b159bb8af8
commit
a6bcc6f573
@ -0,0 +1,39 @@
|
|||||||
|
{
|
||||||
|
"databaseChangeLog": [
|
||||||
|
{
|
||||||
|
"changeSet": {
|
||||||
|
"author": "awilkinson",
|
||||||
|
"id": "1",
|
||||||
|
"changes": [
|
||||||
|
{
|
||||||
|
"createTable": {
|
||||||
|
"tableName": "customer",
|
||||||
|
"columns": [
|
||||||
|
{
|
||||||
|
"column": {
|
||||||
|
"name": "id",
|
||||||
|
"type": "int",
|
||||||
|
"autoIncrement": true,
|
||||||
|
"constraints": {
|
||||||
|
"nullable": false,
|
||||||
|
"primaryKey": true
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"column": {
|
||||||
|
"name": "name",
|
||||||
|
"type": "varchar(50)",
|
||||||
|
"constraints": {
|
||||||
|
"nullable": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
--liquibase formatted sql
|
||||||
|
|
||||||
|
--changeset author:awilkinson
|
||||||
|
|
||||||
|
CREATE TABLE customer (
|
||||||
|
id int AUTO_INCREMENT NOT NULL PRIMARY KEY,
|
||||||
|
name varchar(50) NOT NULL
|
||||||
|
);
|
Loading…
Reference in New Issue