From: Quentin Smith Date: Sun, 26 Dec 2010 00:22:08 +0000 (-0500) Subject: Add a new type of autoinstall - a preseeded Debian autoinstall. X-Git-Tag: 0.2.7~3 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-database.git/commitdiff_plain/25328953b0d7404f6aeb1ebaffd09ef318049024 Add a new type of autoinstall - a preseeded Debian autoinstall. --- diff --git a/debian/changelog b/debian/changelog index b0939b1..7ac3bfa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +invirt-database (0.2.7) unstable; urgency=low + + * Add a new type of autoinstall - a preseeded Debian autoinstall. + + -- Quentin Smith Sat, 25 Dec 2010 19:17:45 -0500 + invirt-database (0.2.6) unstable; urgency=low * Make the build table's succeeded field nullable diff --git a/python/database/models.py b/python/database/models.py index 9a0266e..c1b31b6 100644 --- a/python/database/models.py +++ b/python/database/models.py @@ -91,7 +91,8 @@ autoinstalls_table = Table('autoinstalls', meta, Column('type_id', String, ForeignKey('types.type_id'), nullable=False), Column('distribution', String, nullable=False), Column('mirror', String, nullable=False), - Column('arch', String, nullable=False)) + Column('arch', String, nullable=False), + Column('preseed', Boolean, nullable=False, default=False)) owners_table = Table('owners', meta, Column('owner_id', String, primary_key=True, nullable=False),