##// END OF EJS Templates
pull-requests: fixed case for GIT repositories when a merge check failed due to merge conflicts the pull request wrongly reported missing commits....
pull-requests: fixed case for GIT repositories when a merge check failed due to merge conflicts the pull request wrongly reported missing commits. - we're now searching for dangling commits in a repo that has them and cannot see them because of failed merge checks. - pull-request: will save metadata during merge simulation so merge conflicts are permanently stored, and showed to all users.

File last commit:

r1769:fb9baff8 default
r4299:04e45b92 default
Show More
077_version_4_8_0.py
40 lines | 1.0 KiB | 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 = db.PullRequest.__table__
pull_request_version = db.PullRequestVersion.__table__
reviewer_data_1 = Column(
'reviewer_data_json',
db.JsonType(dialect_map=dict(mysql=UnicodeText(16384))))
reviewer_data_1.create(table=pull_request)
reviewer_data_2 = Column(
'reviewer_data_json',
db.JsonType(dialect_map=dict(mysql=UnicodeText(16384))))
reviewer_data_2.create(table=pull_request_version)
fixups(db, meta.Session)
def downgrade(migrate_engine):
meta = MetaData()
meta.bind = migrate_engine
def fixups(models, _SESSION):
pass