using the correct layer may help in creating indexes. :)

git-svn-id: file:///svn/phpbb/trunk@7192 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen 2007-03-14 22:45:49 +00:00
parent 73ae601158
commit 823ca05615

View file

@ -592,7 +592,7 @@ foreach ($database_update_info as $version => $schema_changes)
{ {
foreach ($index_array as $index_name => $column) 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) foreach ($index_array as $index_name => $column)
{ {
sql_create_index($dbms, $index_name, $table, $column); sql_create_index($map_dbms, $index_name, $table, $column);
} }
} }
} }