This is an automated email from the ASF dual-hosted git repository.
adamsaghy 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 ccfb8c3c9 FINERACT-2081: Add "Interest Refund" transaction into
r_enum_value table
ccfb8c3c9 is described below
commit ccfb8c3c9cd7ea7b84b5cfca4e769240e83f3c51
Author: Adam Saghy <[email protected]>
AuthorDate: Tue Nov 26 11:00:22 2024 +0100
FINERACT-2081: Add "Interest Refund" transaction into r_enum_value table
---
.../db/changelog/tenant/changelog-tenant.xml | 1 +
.../0154_add_interest_refund_to_r_enum_value.xml | 36 ++++++++++++++++++++++
2 files changed, 37 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 2a0d2d0c3..340df505e 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
@@ -172,4 +172,5 @@
<include file="parts/0151_interest_refund_business_events.xml"
relativeToChangelogFile="true" />
<include file="parts/0152_update_password_validation_policy.xml"
relativeToChangelogFile="true" />
<include
file="parts/0153_add_charge_off_reason_id_to_acc_product_mapping.xml"
relativeToChangelogFile="true" />
+ <include file="parts/0154_add_interest_refund_to_r_enum_value.xml"
relativeToChangelogFile="true" />
</databaseChangeLog>
diff --git
a/fineract-provider/src/main/resources/db/changelog/tenant/parts/0154_add_interest_refund_to_r_enum_value.xml
b/fineract-provider/src/main/resources/db/changelog/tenant/parts/0154_add_interest_refund_to_r_enum_value.xml
new file mode 100644
index 000000000..ced871730
--- /dev/null
+++
b/fineract-provider/src/main/resources/db/changelog/tenant/parts/0154_add_interest_refund_to_r_enum_value.xml
@@ -0,0 +1,36 @@
+<?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 id="1" author="fineract">
+ <insert tableName="r_enum_value">
+ <column name="enum_name" value="transaction_type_enum"/>
+ <column name="enum_id" valueNumeric="33"/>
+ <column name="enum_message_property" value="Interest Refund"/>
+ <column name="enum_value" value="Interest Refund"/>
+ <column name="enum_type" valueBoolean="false"/>
+ </insert>
+ </changeSet>
+
+</databaseChangeLog>