Make `host` optional for `oci` database resources
`oci` uses Zend's `Oracle` adapter, which does not use this setting at all.
This commit is contained in:
parent
e66f76e881
commit
1b91a93e34
|
@ -58,7 +58,7 @@ class DbResourceForm extends Form
|
|||
$offerMysql = true;
|
||||
}
|
||||
|
||||
if ($dbChoice === 'oracle') {
|
||||
if ($dbChoice === 'oracle' || $dbChoice === 'oci') {
|
||||
$hostIsRequired = false;
|
||||
} else {
|
||||
$hostIsRequired = true;
|
||||
|
|
Loading…
Reference in New Issue