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)".
Activity
Benjamin Eberlei
made changes -
| Field | Original Value | New Value |
|---|---|---|
| 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)". |
I use the annotation mapping: here's my mapping informations: {code} /** * @var mixed optionValue * @orm:Column(nullable="true", name="option_value", length="2000", type="string") */ protected $optionValue; {code} when i check the mysql column type it's still "varchar(255)". |
Benjamin Eberlei
made changes -
| Status | Open [ 1 ] | Resolved [ 5 ] |
| Fix Version/s | 2.0-RC4 [ 10111 ] | |
| Resolution | Fixed [ 1 ] |
Benjamin Eberlei
made changes -
| Workflow | jira [ 12106 ] | jira-feedback2 [ 17672 ] |
Benjamin Eberlei
made changes -
| Workflow | jira-feedback2 [ 17672 ] | jira-feedback3 [ 20027 ] |
This list may be incomplete, as errors occurred whilst retrieving source from linked applications:
- Request to http://www.doctrine-project.org/fisheye/ failed: Error in remote call to 'FishEye 0 (http://www.doctrine-project.org/fisheye/)' (http://www.doctrine-project.org/fisheye) [AbstractRestCommand{path='/rest-service-fe/search-v1/crossRepositoryQuery', params={query=DBAL-62, expand=changesets[-21:-1].revisions[0:29],reviews}, methodType=GET}] : Received status code 503 (Service Temporarily Unavailable)
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.