##// END OF EJS Templates
chore(tests): add more flexibility to where we want to print mustcontain output for testing response
chore(tests): add more flexibility to where we want to print mustcontain output for testing response

File last commit:

r5042:4c5af799 default
r5190:9f610147 default
Show More
097_version_4_17_0.py
36 lines | 902 B | text/x-python | PythonLexer
dbmigrate: python3 changes...
r5042
repository-groups: use lazy loaded admin dashboard
r3623
import logging
from alembic.migration import MigrationContext
from alembic.operations import Operations
database: fix migration for mysql....
r3791 from sqlalchemy import String
repository-groups: use lazy loaded admin dashboard
r3623
from rhodecode.lib.dbmigrate.versions import _reset_base
from rhodecode.model import init_model_encryption
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_16_0_2
init_model_encryption(db_4_16_0_2)
context = MigrationContext.configure(migrate_engine.connect())
op = Operations(context)
repo_group = db_4_16_0_2.RepoGroup.__table__
feat: changed last change of repo group to be commit of a latest repository.
r3689
repository-groups: use lazy loaded admin dashboard
r3623 with op.batch_alter_table(repo_group.name) as batch_op:
database: fix migration for mysql....
r3791 batch_op.alter_column("repo_group_name_hash", type_=String(1024), nullable=False)
repository-groups: use lazy loaded admin dashboard
r3623
def downgrade(migrate_engine):
pass