##// END OF EJS Templates
User: use new escaped hybrid properties for usage in code....
User: use new escaped hybrid properties for usage in code. - Allows introducing the safer method of reading first/last names from users.

File last commit:

r1:854a839a default
r1814:a1111aae default
Show More
config.py
14 lines | 339 B | text/x-python | PythonLexer
project: added all source files and assets
r1 #!/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'