##// END OF EJS Templates
fix(users): fixed password mismatch error message beeing wrongly displayed when creating new users
fix(users): fixed password mismatch error message beeing wrongly displayed when creating new users

File last commit:

r5042:4c5af799 default
r5210:a4612633 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'