mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 05:50:42 +02:00
[ticket/10351] Fix Oracle's sql_column_remove()
The correct syntax is DROP COLUMN. PHPBB3-10351
This commit is contained in:
@@ -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':
|
||||
|
Reference in New Issue
Block a user