public static function updateIndex($phid, $name)
 {
     $table = new ManiphestNameIndex();
     $conn_w = $table->establishConnection('w');
     queryfx($conn_w, 'INSERT INTO %T (indexedObjectPHID, indexedObjectName) VALUES (%s, %s)
     ON DUPLICATE KEY UPDATE indexedObjectName = VALUES(indexedObjectName)', $table->getTableName(), $phid, $name);
 }