Fixing strict standards notice
This commit is contained in:
parent
2f6f8587b5
commit
b2eeac5640
1 changed files with 3 additions and 1 deletions
|
@ -41,7 +41,8 @@ class ConvertDoctrine1Schema
|
||||||
private $_legacyTypeMap = array(
|
private $_legacyTypeMap = array(
|
||||||
// TODO: This list may need to be updated
|
// TODO: This list may need to be updated
|
||||||
'clob' => 'text',
|
'clob' => 'text',
|
||||||
'timestamp' => 'datetime'
|
'timestamp' => 'datetime',
|
||||||
|
'enum' => 'string'
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -238,6 +239,7 @@ class ConvertDoctrine1Schema
|
||||||
if (isset($relation['refClass'])) {
|
if (isset($relation['refClass'])) {
|
||||||
$type = 'many';
|
$type = 'many';
|
||||||
$foreignType = 'many';
|
$foreignType = 'many';
|
||||||
|
$joinColumns = array();
|
||||||
} else {
|
} else {
|
||||||
$type = isset($relation['type']) ? $relation['type'] : 'one';
|
$type = isset($relation['type']) ? $relation['type'] : 'one';
|
||||||
$foreignType = isset($relation['foreignType']) ? $relation['foreignType'] : 'many';
|
$foreignType = isset($relation['foreignType']) ? $relation['foreignType'] : 'many';
|
||||||
|
|
Loading…
Add table
Reference in a new issue