diff --git a/src/main/resources/liquibase/harness/change/expectedSnapshot/oracle/23.2.0/addDefaultValueBoolean.json b/src/main/resources/liquibase/harness/change/expectedSnapshot/oracle/23.2.0/addDefaultValueBoolean.json new file mode 100644 index 000000000..c31ce30a9 --- /dev/null +++ b/src/main/resources/liquibase/harness/change/expectedSnapshot/oracle/23.2.0/addDefaultValueBoolean.json @@ -0,0 +1,15 @@ +{ + "snapshot": { + "objects": { + "liquibase.structure.core.Column": [ + { + "column": { + "defaultValue": "1\\!\\{java.math.BigDecimal\\}", + "name": "BOOLEANCOLUMN", + "nullable": true + } + } + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/liquibase/harness/change/expectedSnapshot/oracle/23.2.0/addNotNullConstraintBitBoolean.json b/src/main/resources/liquibase/harness/change/expectedSnapshot/oracle/23.2.0/addNotNullConstraintBitBoolean.json new file mode 100644 index 000000000..cf2490f29 --- /dev/null +++ b/src/main/resources/liquibase/harness/change/expectedSnapshot/oracle/23.2.0/addNotNullConstraintBitBoolean.json @@ -0,0 +1,26 @@ +{ + "snapshot": { + "objects": { + "liquibase.structure.core.Column": [ + { + "column": { + "name": "BIT_COL", + "nullable": false, + "type": { + "typeName": "BOOLEAN" + } + } + }, + { + "column": { + "name": "BOOLEAN_COL", + "nullable": false, + "type": { + "typeName": "BOOLEAN" + } + } + } + ] + } + } +} \ No newline at end of file