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

r2087:d69882dc default
r4299:04e45b92 default
Show More
081_version_4_10_0.py
50 lines | 1.3 KiB | text/x-python | PythonLexer
import logging
from sqlalchemy import *
from sqlalchemy.engine import reflection
from sqlalchemy.dialects.mysql import LONGTEXT
from alembic.migration import MigrationContext
from alembic.operations import Operations
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_9_0_0
if migrate_engine.name in ['mysql']:
context = MigrationContext.configure(migrate_engine.connect())
op = Operations(context)
user_log_table = db_4_9_0_0.UserLog.__table__
with op.batch_alter_table(user_log_table.name) as batch_op:
action_data_json = user_log_table.columns.action_data_json
user_data_json = user_log_table.columns.user_data_json
batch_op.alter_column(action_data_json.name, type_=LONGTEXT)
batch_op.alter_column(user_data_json.name, type_=LONGTEXT)
# issue fixups
fixups(db_4_9_0_0, meta.Session)
def downgrade(migrate_engine):
meta = MetaData()
meta.bind = migrate_engine
def fixups(models, _SESSION):
pass