]> git.decadent.org.uk Git - dak.git/blobdiff - dak/dakdb/update1.py
Fixed it so the fingerprint table is properly referenced vs the uid
[dak.git] / dak / dakdb / update1.py
index a7ceb20a164b22eca0164648623d5c871a082739..5c027c51ef01f8d7545aa050e68b6ddb4d7f81b9 100644 (file)
@@ -34,7 +34,7 @@ def do_update(self):
     try:
        c = self.db.cursor()
        c.execute("ALTER TABLE source ADD COLUMN dm_upload_allowed BOOLEAN DEFAULT 'no' NOT NULL;")
-       c.execute("ALTER TABLE uid ADD COLUMN debian_maintainer BOOLEAN DEFAULT 'false' NOT NULL;")
+       c.execute("ALTER TABLE fingerprint ADD COLUMN is_dm BOOLEAN DEFAULT 'false' NOT NULL;")
 
        print "Migrating DM data to source table. This might take some time ..."