Is something like this possible and if yes, is initSql executed each time a connection is established? For example i want to make sure that on each connection the time zone is set to UTC. Or is there a better way to execute connection-init-sql statements?
flyway:
datasources:
default:
initSql: SET ROLE test_role; SET time zone 'UTC'; <--- is this second statement executed?
Thanks!
