openmrs should support postgresql

The previous issue is resolved. Then there were problems related to granting privileges to created user in postgresql. It appears that the query GRANT ALL PRIVILEGES ON DATABASE “openmrs” TO “openmrs_user” does not actually grant all privileges. For instance privileges related to Triggers that are required for changesets in liqibase-core.xml file were not granted. So I had to make created user superuser. Also, I am making use of PostgreSQL 11 so I had to change the maven dependency for latest drivers to

  	<dependency>
  	    <groupId>org.postgresql</groupId>
  	    <artifactId>postgresql</artifactId>
  	    <version>42.2.10</version>
  	    <scope>runtime</scope>
  	</dependency>

Now I am struck at execution of changesets in liquibase-update-to-latest.xml. Here is the link to the logs: INFO 10/3/20 9:48 PM:liquibase: ChangeSet liquibase-schema-only.xml::20120529-22 - Pastebin.com

Any help is welcomed