Index: trunk/Nebulous-Server/bin/neb-host
===================================================================
--- trunk/Nebulous-Server/bin/neb-host	(revision 34090)
+++ trunk/Nebulous-Server/bin/neb-host	(revision 34764)
@@ -141,6 +141,6 @@
 $dbh->commit;
 
-my $format  = "%-15s %-15s %-7s %-8s %-9s %-5s %s\n";
-my @columns = qw(host name mounted allocate available xattr note);
+my $format  = "%-15s %-15s %-7s %-8s %-9s %-5s %15s %s\n";
+my @columns = qw(host name mounted allocate available xattr last_modified note);
 printf($format, @columns);
 
Index: trunk/Nebulous-Server/lib/Nebulous/Server/SQL.pm
===================================================================
--- trunk/Nebulous-Server/lib/Nebulous/Server/SQL.pm	(revision 34090)
+++ trunk/Nebulous-Server/lib/Nebulous/Server/SQL.pm	(revision 34764)
@@ -389,4 +389,5 @@
             mountedvol.vol_id IS NOT NULL as mounted,
             v.cab_id,
+            v.last_modified,
             v.note
         FROM volume AS v
@@ -694,4 +695,5 @@
     cab_id INT,
     note VARCHAR(255),
+    last_modified TIMESTAMP NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, # SC: Added by Haydn with ALTER TABLE(?) on 2012-12-03
     PRIMARY KEY(vol_id),
     UNIQUE KEY(name),
