Skip to content

Commit

Permalink
Merge pull request #1390 from djmitche/mysql-implied-indexes
Browse files Browse the repository at this point in the history
Add MySQL implied indexes
  • Loading branch information
Mikhail Sobolev committed Nov 28, 2014
2 parents a20ef32 + ce31a72 commit 80d7a03
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions master/buildbot/db/model.py
Expand Up @@ -682,6 +682,12 @@ class Model(base.DBConnectorComponent):
('buildsets',
dict(unique=False, column_names=['parent_buildid'],
name='parent_buildid')),
('builders_tags',
dict(unique=False, column_names=['tagid'],
name='tagid')),
('changes',
dict(unique=False, column_names=['parent_changeids'],
name='parent_changeids')),
]

#
Expand Down

0 comments on commit 80d7a03

Please sign in to comment.