aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/database_update.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-03-14 22:45:49 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-03-14 22:45:49 +0000
commit823ca0561508439642d547405662e697d994a4b7 (patch)
treebe39558e53d51cad2969e7d51613290b5c524f16 /phpBB/install/database_update.php
parent73ae6011588d533474005818a3db2a11b5b9d784 (diff)
downloadforums-823ca0561508439642d547405662e697d994a4b7.tar
forums-823ca0561508439642d547405662e697d994a4b7.tar.gz
forums-823ca0561508439642d547405662e697d994a4b7.tar.bz2
forums-823ca0561508439642d547405662e697d994a4b7.tar.xz
forums-823ca0561508439642d547405662e697d994a4b7.zip
using the correct layer may help in creating indexes. :)
git-svn-id: file:///svn/phpbb/trunk@7192 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/database_update.php')
-rw-r--r--phpBB/install/database_update.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index 628f51f1eb..acf2dc64ae 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -592,7 +592,7 @@ foreach ($database_update_info as $version => $schema_changes)
{
foreach ($index_array as $index_name => $column)
{
- sql_create_unique_index($dbms, $index_name, $table, $column);
+ sql_create_unique_index($map_dbms, $index_name, $table, $column);
}
}
}
@@ -604,7 +604,7 @@ foreach ($database_update_info as $version => $schema_changes)
{
foreach ($index_array as $index_name => $column)
{
- sql_create_index($dbms, $index_name, $table, $column);
+ sql_create_index($map_dbms, $index_name, $table, $column);
}
}
}