bug fix: "local_" has 6 not 5 characters
This commit is contained in:
		
					parent
					
						
							
								c292d01723
							
						
					
				
			
			
				commit
				
					
						62b4f117bf
					
				
			
		
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -153,7 +153,7 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
 | 
			
		|||
		} else {
 | 
			
		||||
			// Drop the index if it isn't present in the definition and index name doesn't start with "local_"
 | 
			
		||||
			foreach ($database[$name]["indexes"] AS $indexname => $fieldnames)
 | 
			
		||||
				if (!isset($structure["indexes"][$indexname]) && substr($indexname, 0, 5) != 'local_') {
 | 
			
		||||
				if (!isset($structure["indexes"][$indexname]) && substr($indexname, 0, 6) != 'local_') {
 | 
			
		||||
					$sql2=db_drop_index($indexname);
 | 
			
		||||
					if ($sql3 == "")
 | 
			
		||||
						$sql3 = "ALTER TABLE `".$name."` ".$sql2;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue