From c187023427698bd6d5836ca83f108c437374f45d Mon Sep 17 00:00:00 2001 From: Assaf Muller Date: Wed, 16 Sep 2015 15:08:18 -0400 Subject: [PATCH] Clarify DB models devref doc Change-Id: I8f85078fda97d7cbb5847fe317403e9bed58b5e1 --- doc/source/data_model.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/source/data_model.rst b/doc/source/data_model.rst index c32b6e6..06d24de 100644 --- a/doc/source/data_model.rst +++ b/doc/source/data_model.rst @@ -35,6 +35,7 @@ stored in the db. Properties: +* **id**: Database uuid of the row * **test_id**: This would be normally be considered the test name, it is the id used in the subunit stream for an individual test * **success**: The total number of times this test has been run successfully @@ -53,7 +54,8 @@ used for recording all the information about a single test's run. Properties: -* **test_id**: The uuid representing the test which was run +* **test_id**: The uuid representing the test which was run. This correlates + to the id column of the Tests table (And not the test_id column). * **run_id**: The uuid representing the run this was part of * **status**: The outcome of the test. The valid values here are: exists, xfail, unxsuccess, success, fail, skip. You can refer to