##// END OF EJS Templates
svn: enable hooks and integration framework execution....
svn: enable hooks and integration framework execution. - This change will allow SVN to execute rhodecode integration framework via executing the builting hooks. - uses txn_id for svn to provide metadata required via Apache - Interception of SVN transaction is required to use temporary stores for metadata - hooks are now part of vcsserver where the install/control logic is stored

File last commit:

r1769:fb9baff8 default
r2677:25d65914 default
Show More
076_version_4_8_0.py
33 lines | 779 B | text/x-python | PythonLexer
import logging
from sqlalchemy import *
from rhodecode.model import meta
from rhodecode.lib.dbmigrate.versions import _reset_base, notify
log = logging.getLogger(__name__)
def upgrade(migrate_engine):
"""
Upgrade operations go here.
Don't create your own engine; bind migrate_engine to your metadata
"""
_reset_base(migrate_engine)
from rhodecode.lib.dbmigrate.schema import db_4_7_0_1 as db
pull_request_reviewers = db.PullRequestReviewers.__table__
mandatory = Column(
"mandatory", Boolean(), nullable=True, default=False)
mandatory.create(table=pull_request_reviewers)
fixups(db, meta.Session)
def downgrade(migrate_engine):
meta = MetaData()
meta.bind = migrate_engine
def fixups(models, _SESSION):
pass