summaryrefslogtreecommitdiff
path: root/migrate/changeset/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'migrate/changeset/util.py')
-rw-r--r--migrate/changeset/util.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/migrate/changeset/util.py b/migrate/changeset/util.py
index f8ecd81..68b7609 100644
--- a/migrate/changeset/util.py
+++ b/migrate/changeset/util.py
@@ -1,16 +1,5 @@
from migrate.changeset import SQLA_10
-"""
-Safe quoting method
-"""
-
-def safe_quote(obj):
- # this is the SQLA 0.9 approach
- if hasattr(obj, 'name') and hasattr(obj.name, 'quote'):
- return obj.name.quote
- else:
- return obj.quote
-
def fk_column_names(constraint):
if SQLA_10: