Add other_action column to nics table mitchb precise-dev precise-prod 0.2.13
authorMitchell E Berger <mitchb@mit.edu>
Fri, 18 May 2018 00:06:11 +0000 (20:06 -0400)
committerMitchell E Berger <mitchb@mit.edu>
Fri, 18 May 2018 00:06:11 +0000 (20:06 -0400)
debian/changelog
python/database/models.py

index 2b9e55f..860654e 100644 (file)
@@ -1,8 +1,9 @@
 invirt-database (0.2.13) unstable; urgency=low
 
-  * Add columns for netmask, gateway, and an "other_" set of ip params
+  * Add columns for netmask, gateway, and an "other_" set of ip params,
+    with an other_action column to indicate what to do with those.
 
- -- Mitchell Berger <mitchb@mit.edu>  Wed, 25 Apr 2018 02:38:22 -0400
+ -- Mitchell Berger <mitchb@mit.edu>  Thu, 17 May 2018 20:07:00 -0400
 
 invirt-database (0.2.12) unstable; urgency=low
 
index 965bda8..287e957 100644 (file)
@@ -78,6 +78,7 @@ nic_table = Table('nics', meta,
        Column('other_ip', String, nullable=True),
        Column('other_netmask', String, nullable=True),
        Column('other_gateway', String, nullable=True),
+       Column('other_action', String, nullable=True),
        Column('hostname', String, nullable=True),
        Column('reusable', Boolean, nullable=False, default=True))