| Index: appengine/findit/model/crash/crash_analysis.py
|
| diff --git a/appengine/findit/model/crash/crash_analysis.py b/appengine/findit/model/crash/crash_analysis.py
|
| index d98ae4975407b20a9371f405ab8e1ee5d17f16eb..236208d4354e8e691ba6a10ace4b78566a8e4121 100644
|
| --- a/appengine/findit/model/crash/crash_analysis.py
|
| +++ b/appengine/findit/model/crash/crash_analysis.py
|
| @@ -8,7 +8,7 @@ from model import analysis_status
|
|
|
|
|
| class CrashAnalysis(ndb.Model):
|
| - """Base class to represent an analysis of a Chrome crash."""
|
| + """Base class to represent an analysis of a Chrome/Clusterfuzz crash."""
|
| ################### Properties for the crash itself. ###################
|
| # In which version or revision of Chrome the crash occurred. Either a version
|
| # number for Chrome build or a git commit hash/position for chromium build.
|
| @@ -20,6 +20,12 @@ class CrashAnalysis(ndb.Model):
|
| # The signature of the crash.
|
| signature = ndb.StringProperty(indexed=False)
|
|
|
| + # The platform of this crash.
|
| + platform = ndb.StringProperty(indexed=False)
|
| +
|
| + # ID to differentiate different client.
|
| + client_id = ndb.StringProperty(indexed=False)
|
| +
|
| ################### Properties for the analysis progress. ###################
|
|
|
| # The url path to the pipeline status page.
|
|
|