From 397b8f613a8ccf2f563ce8f602c6e4fbca32bd60 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Wed, 13 Aug 2014 23:33:28 -0400 Subject: [PATCH] Add new item to the TODO list Part of subunit2sql's goals is to add support to the testrepository package to use subunit2sql as a configurable repository type. (just like the current file, memory, or samba_buildfarm repository types. Right now the data model of the subunit2sql db schema won't work with that. Testrespository assumes that runs are added to the repository in an order and can be retrieved based on that. So in order to support that use case, support needs to be added to the data model for knowing the order runs were added to the DB. However since since the schema will require changes a new migration must be added to add this to the data model. This commit updates the TODO list to add this work item. Change-Id: I1e5f140eb1df21eb1239e02e048346843d3b42ec --- TODO.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/TODO.rst b/TODO.rst index 2615012..8e28b58 100644 --- a/TODO.rst +++ b/TODO.rst @@ -3,6 +3,7 @@ Work Items for Subunit2SQL Short Term ---------- + * Add a migration that adds an ordering to the runs table * Add more unit tests * Migration tests * DB API unit tests