##// END OF EJS Templates
nix: Add subprocess32 to build inputs....
nix: Add subprocess32 to build inputs. From the python 2 docs: POSIX users (Linux, BSD, etc.) are strongly encouraged to install and use the much more recent subprocess32 module instead of the version included with python 2.7. It is a drop in replacement with better behavior in many situations.

File last commit:

r1:854a839a default
r1006:4d64868f default
Show More
047_version_3_5_0.py
30 lines | 669 B | text/x-python | PythonLexer
import logging
from sqlalchemy import MetaData
from rhodecode.model import meta
from rhodecode.lib.dbmigrate.versions import _reset_base
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_3_5_0_0
ui_table = db_3_5_0_0.RepoRhodeCodeUi.__table__
settings_table = db_3_5_0_0.RepoRhodeCodeSetting.__table__
ui_table.create()
settings_table.create()
def downgrade(migrate_engine):
meta = MetaData()
meta.bind = migrate_engine