From 4c16707f0ce726cc90ac83d70e1d3bd1e6cb5b37 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..dd7498f 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