This is an automated email from the ASF dual-hosted git repository.
aleks pushed a commit to branch 1.8.0
in repository https://gitbox.apache.org/repos/asf/fineract.git
The following commit(s) were added to refs/heads/1.8.0 by this push:
new 7fe34c3d7 FINERACT-1668: Adding Configuration for reversal transaction
7fe34c3d7 is described below
commit 7fe34c3d7d3c3e69f0d32ae508bd5d9f14afbd59
Author: Dhaval Maniyar <[email protected]>
AuthorDate: Sat Aug 20 16:32:37 2022 +0530
FINERACT-1668: Adding Configuration for reversal transaction
---
.../db/changelog/tenant/changelog-tenant.xml | 2 +-
.../0021_reversals_for_reversed_transactions.xml | 37 ++++++++++++++++++++++
2 files changed, 38 insertions(+), 1 deletion(-)
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 f8cb165ca..c795749e6 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
@@ -40,5 +40,5 @@
<include file="parts/0018_pentaho_reports_to_table.xml"
relativeToChangelogFile="true"/>
<include file="parts/0019_refactor_loan_transaction.xml"
relativeToChangelogFile="true"/>
<include file="parts/0020_add_audit_entries.xml"
relativeToChangelogFile="true"/>
- <include file="parts/0026_reversals_for_reversed_transactions.xml"
relativeToChangelogFile="true"/>
+ <include file="parts/0021_reversals_for_reversed_transactions.xml"
relativeToChangelogFile="true"/>
</databaseChangeLog>
diff --git
a/fineract-provider/src/main/resources/db/changelog/tenant/parts/0021_reversals_for_reversed_transactions.xml
b/fineract-provider/src/main/resources/db/changelog/tenant/parts/0021_reversals_for_reversed_transactions.xml
new file mode 100644
index 000000000..1fdbf358d
--- /dev/null
+++
b/fineract-provider/src/main/resources/db/changelog/tenant/parts/0021_reversals_for_reversed_transactions.xml
@@ -0,0 +1,37 @@
+<?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.1.xsd">
+ <changeSet author="fineract" id="1">
+ <insert tableName="c_configuration">
+ <column name="id" valueNumeric="46"/>
+ <column name="name"
value="enable-post-reversal-txns-for-reverse-transactions"/>
+ <column name="value"/>
+ <column name="date_value"/>
+ <column name="string_value"/>
+ <column name="enabled" valueBoolean="false"/>
+ <column name="is_trap_door" valueBoolean="false"/>
+ <column name="description"/>
+ </insert>
+ </changeSet>
+</databaseChangeLog>