Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void addUser(String username, String password) {
}

private void createLessonsForUser(WebGoatUser webGoatUser) {
jdbcTemplate.execute("CREATE SCHEMA \"" + webGoatUser.getUsername() + "\" authorization dba");
jdbcTemplate.execute("CREATE SCHEMA ? authorization dba", webGoatUser.getUsername());
flywayLessons.apply(webGoatUser.getUsername()).migrate();
}

Expand Down
Loading