From: Torsten Werner Date: Mon, 24 Jan 2011 22:16:34 +0000 (+0100) Subject: Make validation of DBSource less strong. X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;ds=inline;h=7e90e4a630cdbd84b99fe6cf77453fe5f11d03db;p=dak.git Make validation of DBSource less strong. Signed-off-by: Torsten Werner --- diff --git a/daklib/dbconn.py b/daklib/dbconn.py index 5e047847..d81e1ed5 100755 --- a/daklib/dbconn.py +++ b/daklib/dbconn.py @@ -2239,8 +2239,7 @@ class DBSource(ORMObject): 'install_date'] def not_null_constraints(self): - return ['source', 'version', 'maintainer', 'changedby', \ - 'poolfile', 'install_date'] + return ['source', 'version', 'install_date'] __all__.append('DBSource')