##// END OF EJS Templates
integrations: added branch_head into URL variables. This allow triggering more explicit...
integrations: added branch_head into URL variables. This allow triggering more explicit build on webhooks/jenkins. branch_head is the last commit of pushed branch so the build system doesn't have to figure it out itself. - in often updated projects without this explicit specified it could happen that the pushed braanch could change when CI systems fetches the code.

File last commit:

r2484:3775edd6 default
r2864:9b105d43 stable
Show More
084_version_4_11_0.py
38 lines | 817 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_11_0_0 as db
reviewers_table = db.PullRequestReviewers.__table__
rule_data = Column(
'rule_data_json',
db.JsonType(dialect_map=dict(mysql=UnicodeText(16384))))
rule_data.create(table=reviewers_table)
# issue fixups
fixups(db, meta.Session)
def downgrade(migrate_engine):
meta = MetaData()
meta.bind = migrate_engine
def fixups(models, _SESSION):
pass