##// END OF EJS Templates
file-nodes: added streaming remote attributes for vcsserver....
file-nodes: added streaming remote attributes for vcsserver. - this will enable doing a streaming raw content or raw downloads of large files without transfering them over to enterprise for pack & repack using msgpack - msgpack has a limit of 4gb and generally pack+repack for 2gb is very slow

File last commit:

r3848:fdb508f1 default
r3895:2b1d7e0d default
Show More
099_version_4_18_0.py
37 lines | 963 B | text/x-python | PythonLexer
# -*- coding: utf-8 -*-
import logging
from alembic.migration import MigrationContext
from alembic.operations import Operations
from sqlalchemy import Column, String
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.CacheKey.__table__
with op.batch_alter_table(cache_key.name) as batch_op:
batch_op.add_column(
Column("cache_state_uid", String(255), nullable=True, unique=None, default=None))
def downgrade(migrate_engine):
pass