summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWill Woods <wwoods@redhat.com>2009-09-17 16:53:52 -0400
committerWill Woods <wwoods@redhat.com>2009-09-17 16:53:52 -0400
commited0cf74fa4fe1a19681ce0c9b28a56846e2248a6 (patch)
treefb1c0143364cbdb4e657883bb4e86777a478d5d0
parentbebdd4daa811e38b98880c00d788a470112479ea (diff)
downloadisrawhidebroken-ed0cf74fa4fe1a19681ce0c9b28a56846e2248a6.tar.gz
israwhidebroken-ed0cf74fa4fe1a19681ce0c9b28a56846e2248a6.tar.xz
israwhidebroken-ed0cf74fa4fe1a19681ce0c9b28a56846e2248a6.zip
Add userid field to TestResult
-rw-r--r--israwhidebroken/model.py2
1 files changed, 2 insertions, 0 deletions
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()