##// END OF EJS Templates
- Added Kubernetes deployment section to the documentation...
- Added Kubernetes deployment section to the documentation - Small formating fixes to the documentation

File last commit:

r5042:4c5af799 default
r5493:18ecb0a9 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'