Skip to content

Commit

Permalink
Merge pull request #126 from velocitycareerlabs/chore/vl-6052-1.14-st…
Browse files Browse the repository at this point in the history
…aging-to-master

Chore/vl 6052 1.14 staging to master
  • Loading branch information
nassan authored Oct 4, 2023
2 parents 9197eb9 + 0369fd7 commit 1631adf
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ version: '3.7'
services:
# Backend service
fineractmysql:
image: mysql:5.7
image: mysql:8.1
volumes:
- ./fineract-db/docker:/docker-entrypoint-initdb.d:Z,ro
restart: always
Expand Down
2 changes: 1 addition & 1 deletion eng/environments/common.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

CURR_VERSION="1.7.0"
CURR_VERSION="1.14.0"
TARGET_CONTAINER_REG="ghcr.io"
TARGET_ORG="velocitynetworkfoundation"
TARGET_REPO="packages"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public final class SavingsAccountTransaction extends AbstractPersistableCustom {
@Column(name = "running_balance_derived", scale = 6, precision = 19, nullable = true)
private BigDecimal runningBalance;

@Column(name = "cumulative_balance_derived", scale = 6, precision = 19, nullable = true)
@Column(name = "cumulative_balance_derived", scale = 6, precision = 30, nullable = true)
private BigDecimal cumulativeBalance;

@Temporal(TemporalType.DATE)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
--
-- 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.
--

ALTER TABLE m_savings_account_transaction MODIFY COLUMN cumulative_balance_derived DECIMAL(30,6);

0 comments on commit 1631adf

Please sign in to comment.