##// END OF EJS Templates
translations: moved methods from new request subscriber to actual methods of custom class....
translations: moved methods from new request subscriber to actual methods of custom class. - this enabled it to work with celery exceptions without any problems - celery has no new request scope so those were undefined in celery

File last commit:

r3971:fc23d267 default
r4842:f24aa2bf default
Show More
100_version_4_18_0.py
37 lines | 942 B | text/x-python | PythonLexer
# -*- coding: utf-8 -*-
import logging
from alembic.migration import MigrationContext
from alembic.operations import Operations
from sqlalchemy import Column, Boolean
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)
cache_key = db_4_16_0_2.FileStore.__table__
with op.batch_alter_table(cache_key.name) as batch_op:
batch_op.add_column(
Column('hidden', Boolean(), nullable=True, default=False))
def downgrade(migrate_engine):
pass