From cd3b142bc9f00fcb73258b751e1c7568bd912b86 Mon Sep 17 00:00:00 2001 From: Stephan Pelikan Date: Wed, 8 May 2024 11:35:29 +0200 Subject: [PATCH] Change column type to BIGINT --- .../io/vanillabp/camunda8/liquibase/issue_26.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/spring-boot/src/main/resources/io/vanillabp/camunda8/liquibase/issue_26.yaml b/spring-boot/src/main/resources/io/vanillabp/camunda8/liquibase/issue_26.yaml index abfa18e..4fdb35b 100644 --- a/spring-boot/src/main/resources/io/vanillabp/camunda8/liquibase/issue_26.yaml +++ b/spring-boot/src/main/resources/io/vanillabp/camunda8/liquibase/issue_26.yaml @@ -162,3 +162,11 @@ databaseChangeLog: tableName: CAMUNDA8_DEPLOYMENTS oldColumnName: BPMN_PROCESS_ID newColumnName: C8D_BPMN_PROCESS_ID + - changeSet: + id: issue_26.yaml#change_type_of_definition_key + author: stephanpelikan + changes: + - modifyDataType: + columnName: C8D_DEFINITION_KEY + newDataType: bigint + tableName: CAMUNDA8_DEPLOYMENTS