| Index: appengine/findit/model/flake/master_flake_analysis.py
|
| diff --git a/appengine/findit/model/flake/master_flake_analysis.py b/appengine/findit/model/flake/master_flake_analysis.py
|
| index 2adca1bb3cfb416f774864357b54e1485b0097f9..cf2ef0c2e86dbcad416ff6542eec2dc5d17b39af 100644
|
| --- a/appengine/findit/model/flake/master_flake_analysis.py
|
| +++ b/appengine/findit/model/flake/master_flake_analysis.py
|
| @@ -19,6 +19,10 @@ class DataPoint(ndb.Model):
|
| build_number = ndb.IntegerProperty(indexed=False)
|
| pass_rate = ndb.FloatProperty(indexed=False)
|
| task_id = ndb.StringProperty(indexed=False)
|
| + commit_position = ndb.IntegerProperty(indexed=False)
|
| + git_hash = ndb.StringProperty(indexed=False)
|
| + previous_build_commit_position = ndb.IntegerProperty(indexed=False)
|
| + previous_build_git_hash = ndb.StringProperty(indexed=False)
|
|
|
|
|
| class MasterFlakeAnalysis(
|
|
|