unrhodecode/rhodecode/lib/dbmigrate/migrate/changeset/util.py
2016-05-24 15:56:53 +02:00

10 lines
211 B
Python
Executable file

"""
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