Adding support for binary
This commit is contained in:
parent
826c348594
commit
fadd7dd65d
1 changed files with 3 additions and 8 deletions
|
|
@ -315,16 +315,11 @@ class Column extends Entity
|
|||
case 'text':
|
||||
case 'mediumtext':
|
||||
case 'longtext':
|
||||
case 'json':
|
||||
$this->setPhpType('string');
|
||||
|
||||
break;
|
||||
case 'enum':
|
||||
$this->setPhpType('string');
|
||||
|
||||
break;
|
||||
case 'datetime':
|
||||
case 'timestamp':
|
||||
case 'datetime':
|
||||
case 'json':
|
||||
case 'binary':
|
||||
$this->setPhpType('string');
|
||||
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue