all:
* make EIBTI imports
- -- Greg Price <price@mit.edu> Fri, 27 Feb 2009 02:29:29 -0500
+ [ Quentin Smith ]
+ * Add "reusable" column for nics, to avoid reusing addresses that are
+ special in some way.
+
+ -- Quentin Smith <quentin@mit.edu> Fri, 27 Feb 2009 11:51:39 -0500
invirt-database (0.1.7) unstable; urgency=low
Column('machine_id', Integer, ForeignKey('machines.machine_id'), nullable=True),
Column('mac_addr', String, nullable=False, primary_key=True),
Column('ip', String, nullable=False, unique=True),
- Column('hostname', String, nullable=True))
+ Column('hostname', String, nullable=True),
+ Column('reusable', Boolean, nullable=False, default=True))
disk_table = Table('disks', meta,
Column('machine_id', Integer, ForeignKey('machines.machine_id'), nullable=False),