##// END OF EJS Templates
iterate over repos groups for bool() calls to actually work on it....
iterate over repos groups for bool() calls to actually work on it. fixes some issues with correctly displaying if there are no groups you have permission to.

File last commit:

r3148:b3198497 beta
r3418:9fe4543b beta
Show More
010_version_1_5_2.py
50 lines | 1.6 KiB | text/x-python | PythonLexer
Added UserIpMap interface for allowed IP addresses and IP restriction access...
r3125 import logging
import datetime
from sqlalchemy import *
from sqlalchemy.exc import DatabaseError
from sqlalchemy.orm import relation, backref, class_mapper, joinedload
from sqlalchemy.orm.session import Session
from sqlalchemy.ext.declarative import declarative_base
from rhodecode.lib.dbmigrate.migrate import *
from rhodecode.lib.dbmigrate.migrate.changeset import *
from rhodecode.model.meta import Base
from rhodecode.model import meta
Migration upgrades cache for lightweight dashboard...
r3148 from rhodecode.lib.dbmigrate.versions import _reset_base
Added UserIpMap interface for allowed IP addresses and IP restriction access...
r3125
log = logging.getLogger(__name__)
def upgrade(migrate_engine):
"""
Upgrade operations go here.
Don't create your own engine; bind migrate_engine to your metadata
"""
Migration upgrades cache for lightweight dashboard...
r3148 _reset_base(migrate_engine)
Added UserIpMap interface for allowed IP addresses and IP restriction access...
r3125 #==========================================================================
# USER LOGS
#==========================================================================
Migration upgrades cache for lightweight dashboard...
r3148 from rhodecode.lib.dbmigrate.schema.db_1_5_2 import UserIpMap
Added UserIpMap interface for allowed IP addresses and IP restriction access...
r3125 tbl = UserIpMap.__table__
tbl.create()
Added full last changeset info to lightweight dashboard
r3147 #==========================================================================
# REPOSITORIES
#==========================================================================
Migration upgrades cache for lightweight dashboard...
r3148 from rhodecode.lib.dbmigrate.schema.db_1_5_2 import Repository
Added full last changeset info to lightweight dashboard
r3147 tbl = Repository.__table__
changeset_cache = Column("changeset_cache", LargeBinary(), nullable=True)
# create username column
changeset_cache.create(table=tbl)
#fix cache data
Migration upgrades cache for lightweight dashboard...
r3148 repositories = Repository.getAll()
Added full last changeset info to lightweight dashboard
r3147 for entry in repositories:
entry.update_changeset_cache()
Added UserIpMap interface for allowed IP addresses and IP restriction access...
r3125
def downgrade(migrate_engine):
meta = MetaData()
meta.bind = migrate_engine