mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/10351] Fix Oracle's sql_column_remove()
The correct syntax is DROP COLUMN. PHPBB3-10351
This commit is contained in:
parent
8e5eacf692
commit
d938d5d399
1 changed files with 1 additions and 1 deletions
|
@ -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':
|
||||
|
|
Loading…
Add table
Reference in a new issue