We're trying to get the Jira database exporter up and running and we're noticing that the tables it creates in Postgresql are case sensitive. It seems to be creating tables like this:
vs this:
Case sensitive tables are a bit unusual, requiring you to encapsulate all table/column references with double quotes:
This won't work:
Most prefer to have the following all work via case insensitive tables:
Is there a way to have the tables created in a more traditional, non-case-sensitive, way?
Thanks!