##// END OF EJS Templates
top menu: highlight current menu item - reusing hover...
top menu: highlight current menu item - reusing hover Giving a visual hint where the user 'is' helps navigating and feeling comfortable with the site.

File last commit:

r833:9753e090 beta
r3203:fd449fb5 beta
Show More
config.py
14 lines | 339 B | text/x-python | PythonLexer
added dbmigrate package, added model changes...
r833 #!/usr/bin/python
# -*- coding: utf-8 -*-
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'