diff options
Diffstat (limited to 'perllib/FixMyStreet.pm')
-rw-r--r-- | perllib/FixMyStreet.pm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/perllib/FixMyStreet.pm b/perllib/FixMyStreet.pm index bea41910a..d63f708d2 100644 --- a/perllib/FixMyStreet.pm +++ b/perllib/FixMyStreet.pm @@ -121,11 +121,7 @@ sub dbic_connect_info { AutoCommit => 1, pg_enable_utf8 => 1, }; - - # need this to stop issues with user being a reserved word in postgres - my $dbic_args = { - quote_char => '"', - }; + my $dbic_args = {}; return [ $dsn, $user, $password, $dbi_args, $dbic_args ]; } |