##// END OF EJS Templates
fix(ui): fixed issues with hover menus and diff download items....
fix(ui): fixed issues with hover menus and diff download items. - the diff ops are now moved into context menu - the diff ops could be now used in PR context - fixed various UI problems with the old solution

File last commit:

r5042:4c5af799 default
r5294:5bd3eb1a default
Show More
config.py
14 lines | 316 B | text/x-python | PythonLexer
#!/usr/bin/python
from sqlalchemy.util import OrderedDict
__all__ = ['databases', 'operations']
databases = ('sqlite', 'postgres', 'mysql', 'oracle', 'mssql', 'firebird')
# Map operation names to function names
operations = OrderedDict()
operations['upgrade'] = 'upgrade'
operations['downgrade'] = 'downgrade'