Posts
Sort by recent activity
Does Flyway support Jinja template if-else-endif syntax?
Hi,I tried to run SQL statement for specific environment by using Jinja template if-else-endif syntax.--{% if '${env}' = 'stg' %}
grant test_role to test_user;
{% endif %}
--
but it failed with s...