diff options
author | Struan Donald <struan@exo.org.uk> | 2011-06-03 19:35:23 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2011-06-03 19:35:23 +0100 |
commit | fcf474b5effdab93eecf7193d314a5c4b284cc9d (patch) | |
tree | e9c3cbd93477cb9a2cb8ea094ec22e2b1ff0c813 /perllib/FixMyStreet.pm | |
parent | d07bd0a10d8507c3952f81dcd7fdb251bec164c0 (diff) |
Revert "quote names in SQL to get round problems with joining the users table"
This reverts commit d07bd0a10d8507c3952f81dcd7fdb251bec164c0.
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 ]; } |