commit | 16400822688ddd5ec6175158590a84bd8f5c9875 | [log] [tgz] |
---|---|---|
author | aditya puthuparambil <aditya.puthuparambil@bell.ca> | Thu Jan 06 11:29:52 2022 +0000 |
committer | Gerrit Code Review <gerrit@onap.org> | Thu Jan 06 11:29:52 2022 +0000 |
tree | 6286d0b3861b81527321eb0eb8ea16b179a0c910 | |
parent | 7b3d88c0e6f7baeadb33cc70138c374cf665ad3f [diff] | |
parent | 2a12d700f4f5ad21dc371fc94aeda0208e659387 [diff] |
Merge "Add NotNull DB Constraint to operation field"
diff --git a/src/main/resources/db/changelog/schema/04-added-operation-field-in-network-data.xml b/src/main/resources/db/changelog/schema/04-added-operation-field-in-network-data.xml index 62b93b9..88b3f92 100644 --- a/src/main/resources/db/changelog/schema/04-added-operation-field-in-network-data.xml +++ b/src/main/resources/db/changelog/schema/04-added-operation-field-in-network-data.xml
@@ -48,4 +48,8 @@ <comment>Remove not null constraint from payload to support delete operation</comment> <dropNotNullConstraint tableName="network_data" columnName="payload"/> </changeSet> + <changeSet id="4.3" author="cps"> + <comment>Added not null constraint to operation field</comment> + <addNotNullConstraint tableName="network_data" columnName="operation"/> + </changeSet> </databaseChangeLog>