Skip to content
Snippets Groups Projects
Commit dea9a6a7 authored by tpylak's avatar tpylak
Browse files

fix: case where user role contains capital letters (and PostgreSQL doesn't like that)

SVN: 1180
parent 5a94ac34
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ public class DatabaseConfigurationContext
public DatabaseConfigurationContext()
{
owner = System.getProperty("user.name");
owner = System.getProperty("user.name").toLowerCase();
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment