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

kroeckx at alioth.debian.org kroeckx at alioth.debian.org
Mon Sep 22 16:59:58 UTC 2008


Author: kroeckx
Date: 2008-09-22 16:59:56 +0000 (Mon, 22 Sep 2008)
New Revision: 1285

Modified:
   udd/sql/setup.sql
   udd/sql/upgrade.sql
Log:
Properly name affects_stable and affects_unstable


Modified: udd/sql/setup.sql
===================================================================
--- udd/sql/setup.sql	2008-09-22 16:56:36 UTC (rev 1284)
+++ udd/sql/setup.sql	2008-09-22 16:59:56 UTC (rev 1285)
@@ -106,8 +106,8 @@
 CREATE TABLE archived_bugs
   (id int PRIMARY KEY, package text, source text, arrival timestamp, status text,
      severity text, submitter text, owner text, title text,
-     last_modified timestamp, affects_sarchived_table boolean,
-    affects_testing boolean, affects_unsarchived_table boolean,
+     last_modified timestamp, affects_stable boolean,
+    affects_testing boolean, affects_unstable boolean,
     affects_experimental boolean);
 
 CREATE TABLE archived_bugs_merged_with

Modified: udd/sql/upgrade.sql
===================================================================
--- udd/sql/upgrade.sql	2008-09-22 16:56:36 UTC (rev 1284)
+++ udd/sql/upgrade.sql	2008-09-22 16:59:56 UTC (rev 1285)
@@ -8,3 +8,7 @@
 # 2008-09-22: Add a affects_experimental to bugs and archived_bugs
 ALTER TABLE bugs add affects_experimental boolean;
 ALTER TABLE archived_bugs add affects_experimental boolean;
+
+# 2008-09-22: Properly name affects_stable and affects_unstable
+ALTER TABLE archived_bugs rename affects_sarchived_table to affects_stable;
+ALTER TABLE archived_bugs rename affects_unsarchived_table to affects_unstable;




More information about the Collab-qa-commits mailing list