Index: trunk/Nebulous-Server/Changes
===================================================================
--- trunk/Nebulous-Server/Changes	(revision 19623)
+++ trunk/Nebulous-Server/Changes	(revision 19641)
@@ -2,4 +2,5 @@
 
 0.16
+    - add so_id/name idxs to storage_object_xattr table
     - rename neb-addvol -> neb-voladd
 
Index: trunk/Nebulous-Server/lib/Nebulous/Server/SQL.pm
===================================================================
--- trunk/Nebulous-Server/lib/Nebulous/Server/SQL.pm	(revision 19623)
+++ trunk/Nebulous-Server/lib/Nebulous/Server/SQL.pm	(revision 19641)
@@ -1,5 +1,5 @@
 # Copyright (c) 2004  Joshua Hoblitt
 #
-# $Id: SQL.pm,v 1.63 2008-08-21 02:26:58 jhoblitt Exp $
+# $Id: SQL.pm,v 1.64 2008-09-22 21:22:52 jhoblitt Exp $
 
 package Nebulous::Server::SQL;
@@ -392,5 +392,7 @@
     name VARCHAR(255),
     value BLOB,
-    PRIMARY KEY(so_id, name)
+    PRIMARY KEY(so_id, name),
+    KEY(so_id),
+    KEY(name(64))
 ) ENGINE=innodb DEFAULT CHARSET=latin1;
 
