5

我有一个具有正确导入的非常标准的实体:

/**
 * Budhaz\aMailerBundle\Entity\Instance
 *
 * @ORM\Table()
 * @ORM\Entity
 */
class Instance {
    use TimestampableEntity;

    /** @ORM\Id @ORM\GeneratedValue @ORM\Column(type="integer") */
    private $id;
...
}

但是我想从我的表单中删除 createdAt (和 updatedAt),这样用户就不能也不能设置它们,所以我从 InstanceForm 中删除它:

class InstanceType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('name')
            ->add('startAt')
            ->add('endAt')
            //->add('createdAt')
            //->add('updatedAt')
            ->add('campaign')
        ;
    }
...
}

但现在我有这个错误:

SQLSTATE [23000]:违反完整性约束:1048 列“createdAt”不能为空

createdAt 和 updatedAt 应该由 Doctrine 自动设置,但它保持为空,有人知道为什么吗?

4

3 回答 3

12

您必须手动设置类中的值。然后你可以告诉教义在每次更新之前设置新值:

public function __construct() {
    $this->setCreatedAt(new \DateTime());
    $this->setUpdatedAt(new \DateTime());
}

/**
 * @ORM\PreUpdate
 */
public function setUpdatedAtValue() {
    $this->setUpdatedAt(new \DateTime());
}
于 2013-02-19T11:34:32.533 回答
11

应用程序/配置/config.yml

stof_doctrine_extensions:
   orm:
      default:
          timestampable: true
于 2017-12-03T13:47:15.483 回答
2

您需要检查捆绑包是否已安装。如果没有,请运行: composer require stof/doctrine-extensions-bundle

它应该创建文件:app/config/packages/stof_doctrine_extensions.yaml内容:

stof_doctrine_extensions:
    default_locale: en_US
    orm:
        default:
            timestampable: true
于 2020-12-08T15:21:10.660 回答