##// 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:

r1324:efd94f49 default
r2864:9b105d43 stable
Show More
064_version_4_6_0.py
30 lines | 879 B | text/x-python | PythonLexer
import logging
from sqlalchemy import Column, MetaData, Integer, Unicode, ForeignKey
from rhodecode.lib.dbmigrate.versions import _reset_base
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_5_0_0 as db
# add comment type and link to resolve by id
comment_table = db.ChangesetComment.__table__
col1 = Column('comment_type', Unicode(128), nullable=True)
col1.create(table=comment_table)
col1 = Column('resolved_comment_id', Integer(),
ForeignKey('changeset_comments.comment_id'), nullable=True)
col1.create(table=comment_table)
def downgrade(migrate_engine):
meta = MetaData()
meta.bind = migrate_engine