Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.0.0-RC1-RC3
-
Fix Version/s: 2.0-RC4
-
Component/s: None
-
Labels:None
-
Environment:Mysql
Description
I use the annotation mapping:
here's my mapping informations:
/** * @var mixed optionValue * @orm:Column(nullable="true", name="option_value", length="2000", type="string") */ protected $optionValue;
when i check the mysql column type it's still "varchar(255)".
Confirmed on OS X 10.6, PHP 5.3.2, MySQL 5.1.51, DBAL RC3. Schema-tool always generates a VARCHAR(255) column for cases like this. 1.x used to generate TEXT, which I would assume is the correct behavior with MySQL in this case.