Changeset - 8d93d28adf25
[Not reviewed]
default
0 1 0
Mads Kiilerich - 10 years ago 2016-02-01 21:23:44
madski@unity3d.com
db: add index on PullRequestReviewers.user_id
1 file changed with 1 insertions and 0 deletions:
0 comments (0 inline, 0 general)
kallithea/model/db.py
Show inline comments
 
@@ -2357,6 +2357,7 @@ class PullRequest(Base, BaseModel):
 
class PullRequestReviewers(Base, BaseModel):
 
    __tablename__ = 'pull_request_reviewers'
 
    __table_args__ = (
 
        Index('pull_request_reviewers_user_id_idx', 'user_id'),
 
        _table_args_default_dict,
 
    )
 

	
0 comments (0 inline, 0 general)