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

avikg 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 9bf0cbd  Encoding and Engine Agnostic Credit Bureau Migration Script 
(#1668)
9bf0cbd is described below

commit 9bf0cbdb9172f80bf853ca9fc363edfae868cefa
Author: Avik Ganguly <av...@apache.org>
AuthorDate: Fri Mar 19 17:04:00 2021 +0530

    Encoding and Engine Agnostic Credit Bureau Migration Script (#1668)
---
 .../sql/migrations/core_db/V327_1__creditbureau_integration.sql   | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git 
a/fineract-provider/src/main/resources/sql/migrations/core_db/V327_1__creditbureau_integration.sql
 
b/fineract-provider/src/main/resources/sql/migrations/core_db/V327_1__creditbureau_integration.sql
index dbd86b2..6252183 100644
--- 
a/fineract-provider/src/main/resources/sql/migrations/core_db/V327_1__creditbureau_integration.sql
+++ 
b/fineract-provider/src/main/resources/sql/migrations/core_db/V327_1__creditbureau_integration.sql
@@ -27,9 +27,7 @@ CREATE TABLE `m_creditbureau_token` (
   `issued` varchar(128) DEFAULT NULL,
   `expiryDate` DATE DEFAULT NULL,
    PRIMARY KEY (`id`)
-)
-COLLATE='utf8mb4_general_ci'
-ENGINE=InnoDB;
+);
 
 CREATE TABLE `m_creditreport` (
   `id` INT(128) NOT NULL AUTO_INCREMENT,
@@ -38,9 +36,7 @@ CREATE TABLE `m_creditreport` (
   `creditReports` BLOB DEFAULT NULL,
    PRIMARY KEY (`id`),
    CONSTRAINT `cbId` FOREIGN KEY (`creditBureauId`) REFERENCES 
`m_creditbureau` (`id`)
-)
-COLLATE='utf8mb4_general_ci'
-ENGINE=InnoDB;
+);
 
 
 ALTER TABLE m_creditbureau_configuration

Reply via email to