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

r1094:6b71b2c4 default
r4299:04e45b92 default
Show More
063_version_4_5_0.py
27 lines | 704 B | text/x-python | PythonLexer
import logging
from sqlalchemy import Column, MetaData, Boolean
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 personal column to RepoGroup table.
rg_table = db.RepoGroup.__table__
rg_col = Column(
'personal', Boolean(), nullable=True, unique=None, default=None)
rg_col.create(table=rg_table)
def downgrade(migrate_engine):
meta = MetaData()
meta.bind = migrate_engine