]> git.decadent.org.uk Git - dak.git/commitdiff
sort out permission columns
authorMark Hymers <mhy@debian.org>
Sat, 31 Oct 2009 20:20:55 +0000 (20:20 +0000)
committerMark Hymers <mhy@debian.org>
Sat, 31 Oct 2009 20:22:20 +0000 (20:22 +0000)
Signed-off-by: Mark Hymers <mhy@debian.org>
dak/dakdb/update22.py

index 7234555eda7ea8be18dd6785eccedfdd3929dbc5..4f95262debd1f72d2dceed90ab63225de828604a 100755 (executable)
@@ -56,9 +56,12 @@ def do_update(self):
 
         print "Adding policy_queue table"
         c.execute("""CREATE TABLE policy_queue (
-                            id          SERIAL PRIMARY KEY,
-                            queue_name  TEXT NOT NULL UNIQUE,
-                            path        TEXT NOT NULL)""")
+                            id           SERIAL PRIMARY KEY,
+                            queue_name   TEXT NOT NULL UNIQUE,
+                            path         TEXT NOT NULL,
+                            perms        CHAR(4) NOT NULL DEFAULT '0660' CHECK (perms SIMILAR TO '^[0-7][0-7][0-7][0-7]$'),
+                            change_perms CHAR(4) NOT NULL DEFAULT '0660' CHECK (change_perms SIMILAR TO '^[0-7][0-7][0-7][0-7]$')
+                            )""")
 
         print "Copying queues"
         queues = {}
@@ -204,6 +207,9 @@ def do_update(self):
         print "Getting rid of old queue table"
         c.execute("""DROP TABLE queue""")
 
+        print "Sorting out permission columns"
+        c.execute("""UPDATE policy_queue SET perms = '0664' WHERE queue_name IN ('proposedupdates', 'oldproposedupdates')""")
+
         print "Moving known_changes table"
         c.execute("""ALTER TABLE known_changes RENAME TO changes""")