X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fdakdb%2Fupdate39.py;h=8086b515f689c953344a055709762c2b306561c7;hb=80bfccee962f87de3a79b6182546ac03beba6dbb;hp=921895532dde854c01a12c5a08c8c8e18a1bb459;hpb=f5ea296ef78efe7f946652483629379880567725;p=dak.git diff --git a/dak/dakdb/update39.py b/dak/dakdb/update39.py index 92189553..8086b515 100644 --- a/dak/dakdb/update39.py +++ b/dak/dakdb/update39.py @@ -36,9 +36,9 @@ def do_update(self): print __doc__ try: c = self.db.cursor() - c.execute("INSERT INTO config(name, value) VALUES ('exportpath', '/srv/ftp-master.debian.org/export/changelogs')") - c.execute("ALTER TABLE suite ADD COLUMN britney_changelog text NULL") - c.execute("UPDATE suite SET britney_changelog = '/srv/ftp-master.debian.org/ftp/dists/testing/ChangeLog' WHERE suite_name = 'testing'") + c.execute("INSERT INTO config(name, value) VALUES ('exportpath', 'changelogs')") + c.execute("ALTER TABLE suite ADD COLUMN changelog text NULL") + c.execute("UPDATE suite SET changelog = 'dists/testing/ChangeLog' WHERE suite_name = 'testing'") c.execute("UPDATE config SET value = '39' WHERE name = 'db_revision'") self.db.commit()