aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/db/tools/mssql.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/phpBB/phpbb/db/tools/mssql.php b/phpBB/phpbb/db/tools/mssql.php
index a132832005..254599444d 100644
--- a/phpBB/phpbb/db/tools/mssql.php
+++ b/phpBB/phpbb/db/tools/mssql.php
@@ -524,8 +524,6 @@ class mssql extends tools
{
$statements = array();
- $this->check_index_name_length($table_name, $index_name);
-
$statements[] = 'CREATE UNIQUE INDEX [' . $index_name . '] ON [' . $table_name . ']([' . implode('], [', $column) . '])';
return $this->_sql_run_sql($statements);
@@ -538,8 +536,6 @@ class mssql extends tools
{
$statements = array();
- $this->check_index_name_length($table_name, $index_name);
-
// remove index length
$column = preg_replace('#:.*$#', '', $column);