This is an automated email from the ASF dual-hosted git repository.
adamsaghy pushed a commit to branch test-self-service-removal
in repository https://gitbox.apache.org/repos/asf/fineract.git
The following commit(s) were added to refs/heads/test-self-service-removal by
this push:
new 2140d54fb1 WIP - PATCH-2
2140d54fb1 is described below
commit 2140d54fb1f63d5c85bb010a0c82abb246579775
Author: Adam Saghy <[email protected]>
AuthorDate: Tue Mar 31 12:46:25 2026 +0200
WIP - PATCH-2
---
.../db/changelog/tenant/changelog-tenant.xml | 1 +
.../0219_remove_self_service_feature-part2.xml | 33 ++++++++++++++++++++++
2 files changed, 34 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 6ce8d437d8..8c0f63a01d 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
@@ -238,4 +238,5 @@
<include file="parts/0217_force_withdrawal_configs.xml"
relativeToChangelogFile="true" />
<include file="parts/0218_standardize_character_set_and_collation.xml"
relativeToChangelogFile="true" />
<include file="parts/0219_remove_self_service_feature.xml"
relativeToChangelogFile="true"/>
+ <include file="parts/0219_remove_self_service_feature-part2.xml"
relativeToChangelogFile="true"/>
</databaseChangeLog>
diff --git
a/fineract-provider/src/main/resources/db/changelog/tenant/parts/0219_remove_self_service_feature-part2.xml
b/fineract-provider/src/main/resources/db/changelog/tenant/parts/0219_remove_self_service_feature-part2.xml
new file mode 100644
index 0000000000..9fc24e4baf
--- /dev/null
+++
b/fineract-provider/src/main/resources/db/changelog/tenant/parts/0219_remove_self_service_feature-part2.xml
@@ -0,0 +1,33 @@
+<?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="985">
+ <dropTable tableName="m_selfservice_user_client_mapping"
cascadeConstraints="true"/>
+ <dropTable tableName="m_selfservice_beneficiaries_tpt"
cascadeConstraints="true"/>
+ <dropTable tableName="m_pocket_accounts_mapping"
cascadeConstraints="true"/>
+ <dropTable tableName="m_pocket" cascadeConstraints="true"/>
+ <dropTable tableName="client_device_registration"
cascadeConstraints="true"/>
+ <dropColumn tableName="m_appuser" columnName="is_self_service_user"/>
+ </changeSet>
+</databaseChangeLog>