DataDict: Varchar/TEXT conversion bug fixed
This commit is contained in:
parent
703ba51fab
commit
267bdfa2e8
1 changed files with 3 additions and 3 deletions
|
@ -61,15 +61,15 @@ class Doctrine_DataDict {
|
||||||
case "o":
|
case "o":
|
||||||
case "string":
|
case "string":
|
||||||
case "s":
|
case "s":
|
||||||
if($length < 255)
|
if($length <= 255)
|
||||||
return "C($length)";
|
return "C($length)";
|
||||||
elseif($length < 4000)
|
elseif($length <= 4000)
|
||||||
return "X";
|
return "X";
|
||||||
else
|
else
|
||||||
return "X2";
|
return "X2";
|
||||||
break;
|
break;
|
||||||
case "mbstring":
|
case "mbstring":
|
||||||
if($length < 255)
|
if($length <= 255)
|
||||||
return "C2($length)";
|
return "C2($length)";
|
||||||
|
|
||||||
return "X2";
|
return "X2";
|
||||||
|
|
Loading…
Add table
Reference in a new issue