##// END OF EJS Templates
Added tag v4.27.1 for changeset 1e0ab770108a
Added tag v4.27.1 for changeset 1e0ab770108a

File last commit:

r4343:2ba995a1 default
r4784:d07c3d05 stable
Show More
util.py
21 lines | 513 B | text/x-python | PythonLexer
"""
Safe quoting method
"""
from rhodecode.lib.dbmigrate.migrate.changeset import SQLA_10
def fk_column_names(constraint):
if SQLA_10:
return [
constraint.columns[key].name for key in constraint.column_keys]
else:
return [
element.parent.name for element in constraint.elements]
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