]> err.no Git - dak/commitdiff
Rename dakdb/update67.py -> dakdb/update69.py
authorAnsgar Burchardt <ansgar@debian.org>
Sun, 4 Sep 2011 12:52:49 +0000 (14:52 +0200)
committerAnsgar Burchardt <ansgar@debian.org>
Sun, 4 Sep 2011 12:52:49 +0000 (14:52 +0200)
dak/dakdb/update69.py [moved from dak/dakdb/update67.py with 93% similarity]
dak/update_db.py

similarity index 93%
rename from dak/dakdb/update67.py
rename to dak/dakdb/update69.py
index 2d2d7287dc5f58449dbeb962ee112d0380ce8971..941a3e99eb5893ceab2bdabe980e8b40114fc876 100755 (executable)
@@ -71,9 +71,9 @@ $function$""")
 
         c.execute("ALTER TABLE suite ADD COLUMN include_long_description BOOLEAN NOT NULL DEFAULT 't'")
 
-        c.execute("UPDATE config SET value = '67' WHERE name = 'db_revision'")
+        c.execute("UPDATE config SET value = '69' WHERE name = 'db_revision'")
         self.db.commit()
 
     except psycopg2.ProgrammingError, msg:
         self.db.rollback()
-        raise DBUpdateError, 'Unable to apply sick update 67, rollback issued. Error message : %s' % (str(msg))
+        raise DBUpdateError('Unable to apply sick update 69, rollback issued. Error message : %s' % (str(msg)))
index 89fc174ecd0f2857be05a0b3ded4fcc2400acc00..3df0b43bd23ecf47bb33d9e7dc13174e32074d75 100755 (executable)
@@ -46,7 +46,7 @@ from daklib.daklog import Logger
 ################################################################################
 
 Cnf = None
-required_database_schema = 67
+required_database_schema = 69
 
 ################################################################################