Eliminate traces of MariaDB
diff --git a/README.md b/README.md
index 99c4311..3aed834 100644
--- a/README.md
+++ b/README.md
@@ -37,11 +37,11 @@
 ##### cassandra.cluster.pwd
 cassandra password to use
 
-##### custom.mariadb.host
-mariadb host to use
+##### custom.postgresql.host
+postgresql host to use
 
-##### custom.mariadb.user
-mariadb user to use
+##### custom.postgresql.user
+postgresql user to use
 
-##### custom.mariadb.password
-mariadb password to use
+##### custom.postgresql.password
+postgresql password to use
diff --git a/scripts/Unix/initial-setup.sh b/scripts/Unix/initial-setup.sh
index c9061ec..88d41e0 100755
--- a/scripts/Unix/initial-setup.sh
+++ b/scripts/Unix/initial-setup.sh
@@ -38,7 +38,7 @@
   done
 }
 
-get_modules fineract-cn-lang fineract-cn-api fineract-cn-async fineract-cn-cassandra fineract-cn-mariadb fineract-cn-data-jpa fineract-cn-command fineract-cn-test fineract-cn-postgresql
+get_modules fineract-cn-lang fineract-cn-api fineract-cn-async fineract-cn-cassandra fineract-cn-postgresql fineract-cn-data-jpa fineract-cn-command fineract-cn-test
 
 # Return to start folder
 cd ..
diff --git a/scripts/Unix/pull-all.sh b/scripts/Unix/pull-all.sh
index 1c59f11..b330e8d 100644
--- a/scripts/Unix/pull-all.sh
+++ b/scripts/Unix/pull-all.sh
@@ -35,8 +35,8 @@
 
 (
 cd core
-get_modules fineract-cn-lang fineract-cn-api fineract-cn-async fineract-cn-cassandra fineract-cn-mariadb fineract-cn-data-jpa \
-fineract-cn-command fineract-cn-test fineract-cn-postgresql
+get_modules fineract-cn-lang fineract-cn-api fineract-cn-async fineract-cn-cassandra fineract-cn-postgresql fineract-cn-data-jpa \
+fineract-cn-command fineract-cn-test
 )
 
 (
diff --git a/scripts/windows/initial-setup.bat b/scripts/windows/initial-setup.bat
index c9db5ab..17a26fa 100644
--- a/scripts/windows/initial-setup.bat
+++ b/scripts/windows/initial-setup.bat
@@ -50,10 +50,10 @@
 TIMEOUT /T 5
 cd ..
 
-REM initialize mariadb
-git clone https://github.com/%githubAccount%/fineract-cn-mariadb.git
-cd fineract-cn-mariadb
-git remote add upstream https://github.com/apache/fineract-cn-mariadb.git
+REM initialize postgresql
+git clone https://github.com/%githubAccount%/fineract-cn-postgresql.git
+cd fineract-cn-postgresql
+git remote add upstream https://github.com/apache/fineract-cn-postgresql.git
 git checkout develop
 CALL gradlew publishToMavenLocal
 TIMEOUT /T 5
diff --git a/scripts/windows/pull-all.bat b/scripts/windows/pull-all.bat
index ecdfb57..357b83b 100644
--- a/scripts/windows/pull-all.bat
+++ b/scripts/windows/pull-all.bat
@@ -48,8 +48,8 @@
 TIMEOUT /T 5
 cd ..
 
-REM pull mariadb
-cd fineract-cn-mariadb
+REM pull postgresql
+cd fineract-cn-postgresql
 git checkout develop
 git pull upstream develop
 CALL gradlew publishToMavenLocal