Skip to content

Instantly share code, notes, and snippets.

@goyalmohit
Last active February 21, 2019 19:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goyalmohit/5e9ed89e0d08b4ce2d78fc0c4abbb5c1 to your computer and use it in GitHub Desktop.
Save goyalmohit/5e9ed89e0d08b4ce2d78fc0c4abbb5c1 to your computer and use it in GitHub Desktop.
liquibase changelog sample in json format
{
"databaseChangeLog": [{
"changeSet": {
"id": "20190221092200",
"author": "mohitgoyal",
"changes": [{
"createTable": {
"catalogName": "AdventureWorks2017",
"columns": [{
"column": {
"name": "CustomerTypeID",
"type": "nchar(10)"
}
},
{
"column": {
"name": "CustomerDesc",
"type": "nvarchar (max) (16)"
}
}
],
"tableName": "CustomerDetails",
"schemaName": "dbo"
}
}]
}
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment