summaryrefslogtreecommitdiff
path: root/migrate/changeset/databases/postgres.py
diff options
context:
space:
mode:
authorpercious17 <unknown>2008-12-02 05:11:36 +0000
committerpercious17 <unknown>2008-12-02 05:11:36 +0000
commit9f0bd657f41fad8f8737199f383564ceb0803336 (patch)
treecb01d2c60ff1890052ac30ab58658167bb829904 /migrate/changeset/databases/postgres.py
parent1909dc8888ee8f62c87b9b1bf026909ed7b710d2 (diff)
downloadsqlalchemy-migrate-9f0bd657f41fad8f8737199f383564ceb0803336.tar.gz
most of the tests are now working with nose.
Diffstat (limited to 'migrate/changeset/databases/postgres.py')
-rw-r--r--migrate/changeset/databases/postgres.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/migrate/changeset/databases/postgres.py b/migrate/changeset/databases/postgres.py
index acd6f6c..533a5f4 100644
--- a/migrate/changeset/databases/postgres.py
+++ b/migrate/changeset/databases/postgres.py
@@ -20,7 +20,8 @@ class PGSchemaChanger(ansisql.ANSISchemaChanger):
class PGConstraintGenerator(ansisql.ANSIConstraintGenerator):
- pass
+ def _do_quote_table_identifier(self, identifier):
+ return identifier
class PGConstraintDropper(ansisql.ANSIConstraintDropper):
pass