Add an architecture field to the autoinstaller table 0.0.5
authorEvan Broder <broder@mit.edu>
Mon, 17 Nov 2008 17:29:35 +0000 (12:29 -0500)
committerEvan Broder <broder@mit.edu>
Mon, 17 Nov 2008 17:29:35 +0000 (12:29 -0500)
svn path=/trunk/packages/invirt-database/; revision=1694

debian/changelog
python/database/models.py

index de08e10..d5e5d14 100644 (file)
@@ -1,3 +1,9 @@
+invirt-database (0.0.5) unstable; urgency=low
+
+  * Add an architecture field to the autoinstaller table
+
+ -- Evan Broder <broder@mit.edu>  Mon, 17 Nov 2008 12:18:02 -0500
+
 invirt-database (0.0.3) unstable; urgency=low
 
   * Add attributes to the ORM objects to connect mirrors and cdroms
index 625e04b..f3d36e9 100644 (file)
@@ -79,7 +79,8 @@ autoinstalls_table = Table('autoinstalls', meta,
        Column('description', String, nullable=False),
        Column('type_id', String, ForeignKey('types.type_id'), nullable=False),
        Column('distribution', String, nullable=False),
-       Column('mirror', String, nullable=False))
+       Column('mirror', String, nullable=False),
+       Column('arch', String, nullable=False))
 
 machine_access_table = Table('machine_access', meta,
        Column('machine_id', Integer, ForeignKey('machines.machine_id', ondelete='CASCADE'), nullable=False, index=True),