1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/10351] Fix Oracle's sql_column_remove()

The correct syntax is DROP COLUMN.

PHPBB3-10351
This commit is contained in:
Patrick Webster
2011-09-04 20:22:36 -05:00
parent 8e5eacf692
commit d938d5d399

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':