Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.2.1
-
Fix Version/s: 1.2.2
-
Component/s: None
-
Labels:None
Description
When I try to execute a migration of my DB with doctrine CLI migrate, i get this error.
I fixed it changing the following in Export/Oracle.php
#501 : $fields[] = $this->conn->getDeclaration($fieldName, $field); => $fields[] = $this->getDeclaration($fieldName, $field);
#509 : $fields[] = $fieldName. ' ' . $this->conn->getDeclaration('', $field['definition']); => $fields[] = $fieldName. ' ' . $this->getDeclaration('', $field['definition']);