Liquibase Version: 3.3.2
DB Platform: SQL Server 2014
Driver: jdbc 4.0
I have used the generateChangeLog command to produce a fresh set of deploy scripts from my DB. Many tables have NOT NULL columns, but when I test the Liquibase deploy (update) columns are all nullable. This is causing PK creation to fail.
Sample Change Set:
"createTable": {
"columns": [
{
"column": {
"constraints": {
"constraints": {
"nullable": false
}
},
"name": "Model_Training_Id",
"type": "CHAR(12)"
}
},
...
Any suggestions?