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

r2560:69c11742 default
r4842:f24aa2bf default
Show More
086_version_4_12_0.py
39 lines | 813 B | 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_11_0_0 as db
repository_table = db.Repository.__table__
push_uri = Column(
"push_uri", db.EncryptedTextValue(), nullable=True, unique=False,
default=None)
push_uri.create(table=repository_table)
# issue fixups
fixups(db, meta.Session)
def downgrade(migrate_engine):
meta = MetaData()
meta.bind = migrate_engine
def fixups(models, _SESSION):
pass