From ed0cf74fa4fe1a19681ce0c9b28a56846e2248a6 Mon Sep 17 00:00:00 2001 From: Will Woods Date: Thu, 17 Sep 2009 16:53:52 -0400 Subject: Add userid field to TestResult --- israwhidebroken/model.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/israwhidebroken/model.py b/israwhidebroken/model.py index 28bf4ea..f19eeb4 100644 --- a/israwhidebroken/model.py +++ b/israwhidebroken/model.py @@ -46,6 +46,8 @@ class TestResult(SQLObject): # It's not a float 'cuz we don't have any performance tests in RATS. # XXX - How do we want to handle WARN or ERROR? result = IntCol(notNone=True) + # userid of the user who submitted the result + userid = IntCol(notNone=True) # bug_id for further information, esp. if the test is a fail. # XXX list of bug IDs? bug_id = IntCol() -- cgit