Changeset - b45994c0779e
[Not reviewed]
Merge default
0 6 0
Mads Kiilerich (mads) - 8 years ago 2018-08-06 01:05:18
mads@kiilerich.com
Merge stable
1 file changed with 0 insertions and 2 deletions:
0 comments (0 inline, 0 general)
kallithea/model/db.py
Show inline comments
 
@@ -1525,7 +1525,6 @@ class Repository(Base, BaseDbModel):
 
class RepoGroup(Base, BaseDbModel):
 
    __tablename__ = 'groups'
 
    __table_args__ = (
 
        CheckConstraint('group_id != group_parent_id', name='ck_groups_no_self_parent'),
 
        _table_args_default_dict,
 
    )
 
    __mapper_args__ = {'order_by': 'group_name'} # TODO: Deprecated as of SQLAlchemy 1.1.
 
@@ -1949,7 +1948,6 @@ class UserGroupUserGroupToPerm(Base, Bas
 
    __tablename__ = 'user_group_user_group_to_perm'
 
    __table_args__ = (
 
        UniqueConstraint('target_user_group_id', 'user_group_id', 'permission_id'),
 
        CheckConstraint('target_user_group_id != user_group_id', name='ck_user_group_user_group_to_perm_no_self_target'),
 
        _table_args_default_dict,
 
    )
 

	
0 comments (0 inline, 0 general)