# This patch file was generated by NetBeans IDE
# This patch can be applied using context Tools: Apply Diff Patch action on respective folder.
# It uses platform neutral UTF-8 encoding.
# Above lines and this line are ignored by the patching process.
--- wp-admin\includes\upgrade.php
+++ wp-admin\includes\upgrade-org.php
@@ -1496,6 +1496,7 @@
 						$keyname = $tableindex->Key_name;
 						$index_ary[$keyname]['columns'][] = array('fieldname' => $tableindex->Column_name, 'subpart' => $tableindex->Sub_part);
 						$index_ary[$keyname]['unique'] = ($tableindex->Non_unique == 0)?true:false;
+                                                $index_ary[$keyname]['index_type']= $tableindex->Index_type;
 					}
 
 					// For each actual index in the index array
@@ -1507,6 +1508,9 @@
 						} else if($index_data['unique']) {
 							$index_string .= 'UNIQUE ';
 						}
+                                                if(strtolower($index_data['index_type'])=='fulltext') {
+							$index_string .= 'FULLTEXT ';
+						}
 						$index_string .= 'KEY ';
 						if ($index_name != 'PRIMARY') {
 							$index_string .= $index_name;
