Changeset 34764 for trunk/Nebulous-Server
- Timestamp:
- Dec 4, 2012, 10:09:03 AM (14 years ago)
- Location:
- trunk/Nebulous-Server
- Files:
-
- 2 edited
-
bin/neb-host (modified) (1 diff)
-
lib/Nebulous/Server/SQL.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Nebulous-Server/bin/neb-host
r32919 r34764 141 141 $dbh->commit; 142 142 143 my $format = "%-15s %-15s %-7s %-8s %-9s %-5s % s\n";144 my @columns = qw(host name mounted allocate available xattr note);143 my $format = "%-15s %-15s %-7s %-8s %-9s %-5s %15s %s\n"; 144 my @columns = qw(host name mounted allocate available xattr last_modified note); 145 145 printf($format, @columns); 146 146 -
trunk/Nebulous-Server/lib/Nebulous/Server/SQL.pm
r33826 r34764 389 389 mountedvol.vol_id IS NOT NULL as mounted, 390 390 v.cab_id, 391 v.last_modified, 391 392 v.note 392 393 FROM volume AS v … … 694 695 cab_id INT, 695 696 note VARCHAR(255), 697 last_modified TIMESTAMP NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, # SC: Added by Haydn with ALTER TABLE(?) on 2012-12-03 696 698 PRIMARY KEY(vol_id), 697 699 UNIQUE KEY(name),
Note:
See TracChangeset
for help on using the changeset viewer.
