[Collab-qa-commits] r1812 - udd/sql

Lucas Nussbaum lucas at alioth.debian.org
Sat Sep 25 14:05:08 UTC 2010


Author: lucas
Date: 2010-09-25 14:04:59 +0000 (Sat, 25 Sep 2010)
New Revision: 1812

Modified:
   udd/sql/setup.sql
Log:
number of days for age-days

Modified: udd/sql/setup.sql
===================================================================
--- udd/sql/setup.sql	2010-09-25 12:08:13 UTC (rev 1811)
+++ udd/sql/setup.sql	2010-09-25 14:04:59 UTC (rev 1812)
@@ -738,13 +738,13 @@
 
 CREATE TABLE hints
  (source text, version debversion, architecture text,
-    type text, file text, comment text);
+    type text, argument text, file text, comment text);
 CREATE INDEX hints_idx on hints(source, version);
 GRANT SELECT ON hints TO public;
 
 DROP VIEW relevant_hints;
 CREATE VIEW relevant_hints AS 
-  SELECT source, version, architecture, type, file, comment FROM hints
+  SELECT source, version, architecture, type, argument, file, comment FROM hints
   WHERE version is NULL
   OR type = 'approve'
   OR (type IN ('unblock', 'age-days', 'hint', 'easy') AND (source, version) IN (select source, version from sources where release='sid'))




More information about the Collab-qa-commits mailing list