##// END OF EJS Templates
feat(delete-branch-after-merge-git): added ability to delete a branch automatically after merging PR (if it was configured). Fixes: RCCE-76
feat(delete-branch-after-merge-git): added ability to delete a branch automatically after merging PR (if it was configured). Fixes: RCCE-76

File last commit:

r5042:4c5af799 default
r5449:df00ef8a default
Show More
config.py
14 lines | 316 B | text/x-python | PythonLexer
project: added all source files and assets
r1 #!/usr/bin/python
dbmigrate: python3 changes...
r5042
project: added all source files and assets
r1
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'