mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
DDC-953: CLI tools orm:generate-entities --regenerate-entities=1 flag will generate empty entities 50% of time. #1193
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (Dec 28, 2010).
Originally assigned to: @beberlei on GitHub.
Jira issue originally created by user flynsarmy:
Running the command:
doctrine orm:generate-entities --regenerate-entities=1 --generate-annotations=1 ./
50% of the time my entity will appear as:
<?php namespace models; /**** - models\Role * - @Table(name="roles") - @Entity(repositoryClass="models\repositories\RoleRepository") */ class Role { } The other 50% everything will be in there. In addition, if the --regenerate-entities=1 argument is removed, if I change the data in my YAML schema file for a column (such as changing length=255 to length=50 on a string), the annotations won't be updated when the updated entity is generated. It seems only new fields are being added to the entity files which is why --regenerate-entities=1 was required in the first place.@doctrinebot commented on GitHub (Feb 2, 2011):
Comment created by @beberlei:
Fixed
@doctrinebot commented on GitHub (Feb 8, 2011):
Comment created by flynsarmy:
This issue is still not fixed in 2.0.1. Simply run orm:generate-entities --regenerate-entities=1 --generate-annotations=1 to replicate.
@doctrinebot commented on GitHub (Feb 8, 2011):
Comment created by @beberlei:
Yes, because this issue is fixed in 2.0.2 not in 2.0.1.
@doctrinebot commented on GitHub (Feb 8, 2011):
Issue was closed with resolution "Fixed"