X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fdbconn.py;h=1bf5a0f997c7bb84aa5821aa4f9ab3c074ec3422;hb=144898960af3c564c0a93203cafff457636d2163;hp=4f6b02d8fdfec3fd640551e63070fc893c3e8436;hpb=62a46fad36e7f656052e19dce6b3cf5a1552c1b2;p=dak.git diff --git a/daklib/dbconn.py b/daklib/dbconn.py index 4f6b02d8..1bf5a0f9 100755 --- a/daklib/dbconn.py +++ b/daklib/dbconn.py @@ -2893,8 +2893,9 @@ class DBConn(object): table = Table(table_name, self.db_meta, autoload=True) setattr(self, 'tbl_%s' % table_name, table) - # bin_contents needs special attention until update #41 has been - # applied + # bin_contents needs special attention until the SERIAL type is + # correctly detected and the workaround has been removed; see comment + # above self.tbl_bin_contents = Table('bin_contents', self.db_meta, \ Column('file', Text, primary_key = True), Column('binary_id', Integer, ForeignKey('binaries.id'), \