1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-02 14:57:37 +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

View File

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