diff options
| -rw-r--r-- | phpBB/phpbb/db/tools/tools.php | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/tools/tools.php b/phpBB/phpbb/db/tools/tools.php index ccba63a5d3..d128df96c4 100644 --- a/phpBB/phpbb/db/tools/tools.php +++ b/phpBB/phpbb/db/tools/tools.php @@ -576,7 +576,7 @@ class tools implements tools_interface  			{  				foreach ($indexes as $index_name)  				{ -					if (!$this->sql_index_exists($table, $index_name)) +					if (!$this->sql_index_exists($table, $index_name) && !$this->sql_unique_index_exists($table, $index_name))  					{  						continue;  					}  | 
