This is an automated email from the ASF dual-hosted git repository.

arnold pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new 105071ad9 FINERACT-1724: Add Charge-off transaction into r_enum_value 
table
105071ad9 is described below

commit 105071ad9b5496222186d4b0717fd898f5792007
Author: Adam Saghy <[email protected]>
AuthorDate: Tue Jan 17 16:05:48 2023 +0100

    FINERACT-1724: Add Charge-off transaction into r_enum_value table
---
 .../db/changelog/tenant/changelog-tenant.xml       |  1 +
 .../0083_add_loan_transaction_enum_values.xml      | 34 ++++++++++++++++++++++
 2 files changed, 35 insertions(+)

diff --git 
a/fineract-provider/src/main/resources/db/changelog/tenant/changelog-tenant.xml 
b/fineract-provider/src/main/resources/db/changelog/tenant/changelog-tenant.xml
index 00d798e17..c7eb5a792 100644
--- 
a/fineract-provider/src/main/resources/db/changelog/tenant/changelog-tenant.xml
+++ 
b/fineract-provider/src/main/resources/db/changelog/tenant/changelog-tenant.xml
@@ -102,4 +102,5 @@
     <include 
file="parts/0080_add_external_event_configuration_for_stayed_locked_loans_business_event.xml"
 relativeToChangelogFile="true" />
     <include file="parts/0081_add_configuration_event_producer_batch_size.xml" 
relativeToChangelogFile="true" />
     <include file="parts/0082_add_external_event_default_configuration.xml" 
relativeToChangelogFile="true" />
+    <include file="parts/0083_add_loan_transaction_enum_values.xml" 
relativeToChangelogFile="true" />
 </databaseChangeLog>
diff --git 
a/fineract-provider/src/main/resources/db/changelog/tenant/parts/0083_add_loan_transaction_enum_values.xml
 
b/fineract-provider/src/main/resources/db/changelog/tenant/parts/0083_add_loan_transaction_enum_values.xml
new file mode 100644
index 000000000..d760fe1ef
--- /dev/null
+++ 
b/fineract-provider/src/main/resources/db/changelog/tenant/parts/0083_add_loan_transaction_enum_values.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements. See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership. The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License. You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied. See the License for the
+    specific language governing permissions and limitations
+    under the License.
+
+-->
+<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog";
+                   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+                   
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog 
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.3.xsd";>
+    <changeSet author="fineract" id="1">
+        <insert tableName="r_enum_value">
+            <column name="enum_name" value="transaction_type_enum"/>
+            <column name="enum_id" valueNumeric="27"/>
+            <column name="enum_message_property" value="Charge-off"/>
+            <column name="enum_value" value="Charge-off"/>
+            <column name="enum_type" valueBoolean="false"/>
+        </insert>
+    </changeSet>
+</databaseChangeLog>

Reply via email to