Add a new type of autoinstall - a preseeded Debian autoinstall.
authorQuentin Smith <quentin@mit.edu>
Sun, 26 Dec 2010 00:22:08 +0000 (19:22 -0500)
committerQuentin Smith <quentin@mit.edu>
Sun, 26 Dec 2010 00:32:56 +0000 (19:32 -0500)
debian/changelog
python/database/models.py

index b0939b1..7ac3bfa 100644 (file)
@@ -1,3 +1,9 @@
+invirt-database (0.2.7) unstable; urgency=low
+
+  * Add a new type of autoinstall - a preseeded Debian autoinstall.
+
+ -- Quentin Smith <quentin@mit.edu>  Sat, 25 Dec 2010 19:17:45 -0500
+
 invirt-database (0.2.6) unstable; urgency=low
 
   * Make the build table's succeeded field nullable
 invirt-database (0.2.6) unstable; urgency=low
 
   * Make the build table's succeeded field nullable
index 9a0266e..c1b31b6 100644 (file)
@@ -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('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),
 
 owners_table = Table('owners', meta,
        Column('owner_id', String, primary_key=True, nullable=False),