1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-06 07:35:29 +02:00

[feature/sqlite3] Fix sql_index_drop() for sqlite3

PHPBB3-9728
This commit is contained in:
Joas Schilling 2014-04-29 14:11:29 +02:00
parent 07042e484e
commit b5267d97f4

View File

@ -2048,7 +2048,7 @@ class tools
case 'oracle':
case 'postgres':
case 'sqlite':
case' sqlite3':
case 'sqlite3':
$statements[] = 'DROP INDEX ' . $table_name . '_' . $index_name;
break;
}