forked from FITER1/fineract-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged PR 8065: Sync repository with fiter 03-01-2025
Related work items: #1344, #1345, #1347, #1348, #1349, #1350, #1351, #1352, #1353, #1354, #1355, #1356, #1357, #1358, #1361, #1362, #1363, #1364, #1365, #1366, #1367, #1368, #1369, #1371, #1374, #1375, #1381, #1382, #1383, #1384, #1385, #1388, #1391, #1403, #1417, #1430, #1432, #1440, #1442, #1443, #1447, #1449, #1450, #1457, #29692
- Loading branch information
1 parent
6025de7
commit 7a08452
Showing
38 changed files
with
302 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -145,5 +145,18 @@ | |
]]> | ||
</sql> | ||
</changeSet> | ||
<changeSet id="upgrade_scale_from_2_to_8" author="[email protected]"> | ||
<preConditions onFail="MARK_RAN"> | ||
<columnExists tableName="m_charge" columnName="amount"/> | ||
</preConditions> | ||
<modifyDataType tableName="m_charge" columnName="amount" newDataType="DECIMAL(19,8)"/> | ||
</changeSet> | ||
|
||
<changeSet id="upgrade-m_interest_rate_scale_from_4_to_8" author="[email protected]"> | ||
<preConditions onFail="MARK_RAN"> | ||
<columnExists tableName="m_interest_rate" columnName="current_rate"/> | ||
</preConditions> | ||
<modifyDataType tableName="m_interest_rate" columnName="current_rate" newDataType="DECIMAL(10,8)"/> | ||
</changeSet> | ||
|
||
</databaseChangeLog> |
43 changes: 43 additions & 0 deletions
43
.../db/changelog/tenant/parts/202412241143000002_EA_115_add_configuration_details_column.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?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="[email protected]" id="add_sMLV_seqence_configuration" context="postgresql"> | ||
<sql> | ||
SELECT SETVAL('c_configuration_id_seq', COALESCE(MAX(id), 0)+1, false ) FROM c_configuration; | ||
</sql> | ||
</changeSet> | ||
<changeSet author="[email protected]" id="create-c_configuration-SMLV"> | ||
<insert tableName="c_configuration"> | ||
<column name="name" value="SMLV"/> | ||
<column name="value" valueNumeric="1300"/> | ||
<column name="date_value"/> | ||
<column name="string_value"/> | ||
<column name="enabled" valueBoolean="true"/> | ||
<column name="is_trap_door" valueBoolean="false"/> | ||
<column name="description" value="Salario Minimo Legal Vigente"/> | ||
</insert> | ||
</changeSet> | ||
|
||
</databaseChangeLog> |
Oops, something went wrong.