This is an automated email from the ASF dual-hosted git repository.

vishwasbabu pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new fc01dd2  fix minor SQL syntax problem in 
V271__accounting_for_client_charges.sql
     new 900cdcb  Merge pull request #594 from 
vorburger/fix-V271__accounting_for_client_charges.sql
fc01dd2 is described below

commit fc01dd25b78b9899184fcaf8bd3f5c7dc3d00b68
Author: Michael Vorburger.ch <[email protected]>
AuthorDate: Fri Jun 14 00:01:54 2019 +0200

    fix minor SQL syntax problem in V271__accounting_for_client_charges.sql
---
 .../sql/migrations/core_db/V271__accounting_for_client_charges.sql      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/fineract-provider/src/main/resources/sql/migrations/core_db/V271__accounting_for_client_charges.sql
 
b/fineract-provider/src/main/resources/sql/migrations/core_db/V271__accounting_for_client_charges.sql
index 8c5ff31..2dc1255 100644
--- 
a/fineract-provider/src/main/resources/sql/migrations/core_db/V271__accounting_for_client_charges.sql
+++ 
b/fineract-provider/src/main/resources/sql/migrations/core_db/V271__accounting_for_client_charges.sql
@@ -22,7 +22,7 @@ ALTER TABLE `m_charge`
        ADD COLUMN `income_or_liability_account_id` BIGINT(20) NULL AFTER 
`fee_frequency`,
        ADD CONSTRAINT `FK_m_charge_acc_gl_account` FOREIGN KEY 
(`income_or_liability_account_id`) REFERENCES `acc_gl_account` (`id`);
 
---Journal entries also refer to Client transactions
+-- Journal entries also refer to Client transactions
 ALTER TABLE `acc_gl_journal_entry`
        ADD COLUMN `client_transaction_id` BIGINT(20) NULL DEFAULT NULL AFTER 
`savings_transaction_id`,
        ADD CONSTRAINT `FK_acc_gl_journal_entry_m_client_transaction` FOREIGN 
KEY (`client_transaction_id`) REFERENCES `m_client_transaction` (`id`);

Reply via email to