Skip to content

Commit 1943be2

Browse files
committed
FINERACT-2581: Test commit
1 parent f404593 commit 1943be2

2 files changed

Lines changed: 36 additions & 0 deletions

File tree

fineract-provider/src/main/resources/db/changelog/tenant/changelog-tenant.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,4 +250,5 @@
250250
<include file="parts/0229_trial_balance_summary_fix_empty_space.xml" relativeToChangelogFile="true" />
251251
<include file="parts/0230_add_forgot_password.xml" relativeToChangelogFile="true" />
252252
<include file="parts/0231_remove_clientcharge_inactivate_permissions.xml" relativeToChangelogFile="true" />
253+
<include file="parts/9999_TEST_DANGEROUS_DDL_DO_NOT_MERGE.xml" relativeToChangelogFile="true" />
253254
</databaseChangeLog>
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
4+
Licensed to the Apache Software Foundation (ASF) under one
5+
or more contributor license agreements. See the NOTICE file
6+
distributed with this work for additional information
7+
regarding copyright ownership. The ASF licenses this file
8+
to you under the Apache License, Version 2.0 (the
9+
"License"); you may not use this file except in compliance
10+
with the License. You may obtain a copy of the License at
11+
12+
http://www.apache.org/licenses/LICENSE-2.0
13+
14+
Unless required by applicable law or agreed to in writing,
15+
software distributed under the License is distributed on an
16+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17+
KIND, either express or implied. See the License for the
18+
specific language governing permissions and limitations
19+
under the License.
20+
21+
-->
22+
<!--
23+
*** TEST-ONLY MIGRATION — DO NOT MERGE ***
24+
Drops loan_status_id from m_loan to verify that the regression safety
25+
workflow (Instance #2: old code + new schema) catches the breakage.
26+
-->
27+
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
28+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
29+
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.3.xsd">
30+
31+
<changeSet author="test-ddl-safety" id="9999-1">
32+
<dropColumn tableName="m_loan" columnName="loan_status_id"/>
33+
</changeSet>
34+
35+
</databaseChangeLog>

0 commit comments

Comments
 (0)