##// END OF EJS Templates
api: use consistent way to extract users, repos, repo groups and user groups by id or name....
api: use consistent way to extract users, repos, repo groups and user groups by id or name. - makes usage of Number vs String to differenciate if we pick objec ID or it's name this will allow easy fetching of objects by either id or it's name, including numeric string name - fixes #5230

File last commit:

r1324:efd94f49 default
r1530:1efcb4ee default
Show More
064_version_4_6_0.py
30 lines | 879 B | text/x-python | PythonLexer
import logging
from sqlalchemy import Column, MetaData, Integer, Unicode, ForeignKey
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_4_5_0_0 as db
# add comment type and link to resolve by id
comment_table = db.ChangesetComment.__table__
col1 = Column('comment_type', Unicode(128), nullable=True)
col1.create(table=comment_table)
col1 = Column('resolved_comment_id', Integer(),
ForeignKey('changeset_comments.comment_id'), nullable=True)
col1.create(table=comment_table)
def downgrade(migrate_engine):
meta = MetaData()
meta.bind = migrate_engine