X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fdakdb%2Fupdate42.py;h=48bc9d61af4ccc8b9c6f83b4cbe9334dc668ee7e;hb=ba39a263d7248c981fcc6e7283c71e3138efe024;hp=8e8f7c5644a5d49b7ef510d8915193837ac6ce89;hpb=8c3f7c7e616ed05b2974eb875072c099b337c3b7;p=dak.git diff --git a/dak/dakdb/update42.py b/dak/dakdb/update42.py index 8e8f7c56..48bc9d61 100755 --- a/dak/dakdb/update42.py +++ b/dak/dakdb/update42.py @@ -39,7 +39,7 @@ def do_update(self): c = self.db.cursor() c.execute("ALTER TABLE suite ADD COLUMN butautomaticupgrades BOOLEAN NOT NULL DEFAULT FALSE;") - c.execute("ALTER TABLE suite ADD CONSTRAINT bau_needs_na_set CHECK (not butautomaticupgrades or notautomatic):") + c.execute("ALTER TABLE suite ADD CONSTRAINT bau_needs_na_set CHECK (not butautomaticupgrades or notautomatic);") c.execute("UPDATE config SET value = '42' WHERE name = 'db_revision'") self.db.commit()