我已使用symfony + doctrine annotations将此注释添加到我的实体中的列。
* @ORM\GeneratedValue(strategy="AUTO")
现在,在尝试使用"迁移diff"来尝试迁移数据库后,它表示没有迁移更改。那么如何将该字段转换为auto_increment?
/**
* @ORM\Column(name="position_brand", type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $positionBrand;
注意:正如您可以猜到的那样,因为列的名称,我试图实现可排序的行为。我知道已经有了解决方案,但我自己尝试做什么。