1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-08 00:25:19 +02:00

Merge remote-tracking branch 'Noxwizard/ticket/10351' into develop-olympus

* Noxwizard/ticket/10351:
  [ticket/10351] Fix Oracle's sql_column_remove()
This commit is contained in:
Andreas Fischer 2011-09-06 00:42:48 +02:00
commit d28ec48675

View File

@ -1805,7 +1805,7 @@ class phpbb_db_tools
break;
case 'oracle':
$statements[] = 'ALTER TABLE ' . $table_name . ' DROP ' . $column_name;
$statements[] = 'ALTER TABLE ' . $table_name . ' DROP COLUMN ' . $column_name;
break;
case 'postgres':