]> git.decadent.org.uk Git - dak.git/blob - dak/dakdb/update9.py
Merge commit 'ftpmaster/master'
[dak.git] / dak / dakdb / update9.py
1 #!/usr/bin/env python
2 # coding=utf8
3
4 """
5 Debian Archive Kit Database Update Script
6 Copyright © 2008  Michael Casadevall <mcasadevall@debian.org>
7 Copyright © 2009  Mike O'Connor <stew@debian.org>
8
9 Debian Archive Kit Database Update Script 8
10 """
11
12 # This program is free software; you can redistribute it and/or modify
13 # it under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 2 of the License, or
15 # (at your option) any later version.
16
17 # This program is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 # GNU General Public License for more details.
21
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write to the Free Software
24 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
25
26 ################################################################################
27
28 # * Ganneff ponders how to best write the text to -devel. (need to tell em in
29 #   case they find more bugs). "We fixed the fucking idiotic broken implementation
30 #   to be less so" is probably not the nicest, even if perfect valid, way to say so
31
32 ################################################################################
33
34 import psycopg2
35 import time
36 from daklib.dak_exceptions import DBUpdateError
37 from daklib.utils import get_conf
38
39 ################################################################################
40
41 def do_update(self):
42     print "pending_contents should distinguish by arch"
43     Cnf = get_conf()
44
45     try:
46         c = self.db.cursor()
47
48         c.execute("DELETE FROM pending_content_associations")
49         c.execute("""ALTER TABLE pending_content_associations
50                          ADD COLUMN architecture integer NOT NULL""")
51         c.execute("""ALTER TABLE ONLY pending_content_associations
52                          ADD CONSTRAINT pending_content_assiciations_arch
53                          FOREIGN KEY (architecture)
54                          REFERENCES architecture(id)
55                          ON DELETE CASCADE""")
56         c.execute("UPDATE config SET value = '9' WHERE name = 'db_revision'")
57         self.db.commit()
58
59     except psycopg2.ProgrammingError, msg:
60         self.db.rollback()
61         raise DBUpdateError, "Unable to apply suite config updates, rollback issued. Error message : %s" % (str(msg))