##// END OF EJS Templates
release: Bump version 5.1.1 to 5.1.2
release: Bump version 5.1.1 to 5.1.2

File last commit:

r5042:4c5af799 default
r5519:c5786bac v5.1.2 stable
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'