##// END OF EJS Templates
don't show rss links - atom is the present and the future...
don't show rss links - atom is the present and the future - following the reasoning on http://selenic.com/pipermail/mercurial-devel/2012-December/046542.html

File last commit:

r833:9753e090 beta
r3295:2e618376 beta
Show More
config.py
14 lines | 339 B | text/x-python | PythonLexer
#!/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'