[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[dak/master] update7



use correct sql

Signed-off-by: Joerg Jaspert <joerg@debian.org>
---
 dak/dakdb/update7.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dak/dakdb/update7.py b/dak/dakdb/update7.py
index 96a3614..1c59707 100755
--- a/dak/dakdb/update7.py
+++ b/dak/dakdb/update7.py
@@ -56,7 +56,7 @@ def do_update(self):
             c.execute(query, [suite])
 
 
-        c.execute("ALTER TABLE suite ADD COLUMN announce text DEFAULT NOT NULL 'debian-devel-changes@lists.debian.org';")
+        c.execute("ALTER TABLE suite ADD COLUMN announce text NOT NULL DEFAULT 'debian-devel-changes@lists.debian.org';")
         query = "UPDATE suite SET announce = %s WHERE suite_name = %s"  #: Update query
         for suite in Cnf.SubTree("Suite").List():
             announce_list = Cnf.Find("Suite::%s::Announce" % (suite))
-- 
1.5.6.5


Reply to: