diff options
author | percious17 <unknown> | 2008-12-02 05:11:36 +0000 |
---|---|---|
committer | percious17 <unknown> | 2008-12-02 05:11:36 +0000 |
commit | 9f0bd657f41fad8f8737199f383564ceb0803336 (patch) | |
tree | cb01d2c60ff1890052ac30ab58658167bb829904 /migrate/changeset/databases/postgres.py | |
parent | 1909dc8888ee8f62c87b9b1bf026909ed7b710d2 (diff) | |
download | sqlalchemy-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.py | 3 |
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 |