From b55ca4d2cbe3527f9cef3498e60d5514db941e80 Mon Sep 17 00:00:00 2001 From: sienkiew Date: Thu, 15 Aug 2013 14:09:53 +0000 Subject: add count of errors to list of runs git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@1017 d34015c8-bcbb-4646-8ac8-8ba5febf221d --- steuermann/db.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'steuermann') diff --git a/steuermann/db.sql b/steuermann/db.sql index bc35f62..919ab6a 100644 --- a/steuermann/db.sql +++ b/steuermann/db.sql @@ -46,7 +46,8 @@ create unique index sm_status_idx1 on sm_status ( run, host, tablename, cmd ); -- table lists all run names in the system CREATE TABLE sm_runs ( run VARCHAR(100), - create_time VARCHAR(26) + create_time VARCHAR(26), + errors int ); CREATE UNIQUE INDEX sm_runs_idx1 ON sm_runs(run); -- cgit