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

lucas at alioth.debian.org lucas at alioth.debian.org
Fri Sep 26 20:32:08 UTC 2008


Author: lucas
Date: 2008-09-26 20:32:07 +0000 (Fri, 26 Sep 2008)
New Revision: 1296

Modified:
   udd/sql/upgrade.sql
Log:
fix comments

Modified: udd/sql/upgrade.sql
===================================================================
--- udd/sql/upgrade.sql	2008-09-26 20:31:36 UTC (rev 1295)
+++ udd/sql/upgrade.sql	2008-09-26 20:32:07 UTC (rev 1296)
@@ -1,4 +1,4 @@
-# 2008-09-22: Change severity from text to bugs_severity enum:
+-- 2008-09-22: Change severity from text to bugs_severity enum:
 CREATE TYPE bugs_severity AS ENUM ('fixed', 'wishlist', 'minor', 'normal', 'important', 'serious', 'grave', 'critical');
 ALTER TABLE bugs add severity2 bugs_severity;
 UPDATE bugs set severity2 = severity::bugs_severity;
@@ -9,10 +9,10 @@
 ALTER TABLE archived_bugs drop severity;
 ALTER TABLE archived_bugs rename severity2 to severity;
 
-# 2008-09-22: Add a affects_experimental to bugs and archived_bugs
+-- 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
+-- 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