mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-01 14:30:32 +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;
|
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':
|
||||||
|
Reference in New Issue
Block a user