Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 1.2.2
-
Fix Version/s: None
-
Component/s: Migrations
-
Labels:None
Description
When trying to rename a column that is NOT NULL and has no default value, Doctrine generates this SQL:
ALTER TABLE `article` CHANGE `typeid` `listid` INT DEFAULT NULL NOT NULL
Which fails. It should be:
ALTER TABLE `article` CHANGE `typeid` `listid` INT NOT NULL
Activity
Jack Sleight
made changes -
| Field | Original Value | New Value |
|---|---|---|
| Description |
When trying to rename a column that is NOT NULL and has no default value, Doctrine generates this SQL: {code}ALTER TABLE `article` CHANGE `typeid` `listid` INT DEFAULT NULL NOT NULL{code} Which fails. It should be: {code}ALTER TABLE `at_article` CHANGE `journalid` `listid` INT NOT NULL{code} |
When trying to rename a column that is NOT NULL and has no default value, Doctrine generates this SQL: {code}ALTER TABLE `article` CHANGE `typeid` `listid` INT DEFAULT NULL NOT NULL{code} Which fails. It should be: {code}ALTER TABLE `article` CHANGE `typeid` `listid` INT NOT NULL{code} |
Matthew Hughes
made changes -
| Attachment | DC-768.patch [ 10922 ] |
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=DC-768, expand=changesets[-21:-1].revisions[0:29],reviews}, methodType=GET}] : Received status code 503 (Service Temporarily Unavailable)
can confirm this behaviour on mysql w/ 1.2.4