web-dev-qa-db-ja.com

Doctrine 2-ManyToOne関係の外部キーにnull値を許可しない

次のように、エンティティの1つにManyToOne関係があります。

class License {
    // ...
    /**
     * Customer who owns the license
     * 
     * @var \ISE\LicenseManagerBundle\Entity\Customer
     * @ORM\ManyToOne(targetEntity="Customer", inversedBy="licenses")
     * @ORM\JoinColumn(name="customer_id", referencedColumnName="id")
     */
    private $customer;
    // ...
}

class Customer {
    // ...
    /**
     * Licenses that were at one point generated for the customer
     * 
     * @var \Doctrine\Common\Collections\ArrayCollection
     * @ORM\OneToMany(targetEntity="License", mappedBy="customer")
     */
    private $licenses;
    // ...
}

これにより、ライセンステーブルの「customer_id」フィールドにnullを許可するデータベーススキーマが生成されますが、これはまさに望ましくありません。

参照フィールドにnull値を実際に許可することを証明するためにレコードを作成するコードを次に示します。

$em = $this->get('doctrine')->getEntityManager();
$license = new License();
// Set some fields - not the reference fields though
$license->setValidUntil(new \DateTime("2012-12-31"));
$license->setCreatedAt(new \DateTime());
// Persist the object
$em->persist($license);
$em->flush();

基本的に、お客様にライセンスを割り当てずにライセンスを保持したくないのです。設定する必要のある注釈はありますか、またはカスタマーオブジェクトをライセンスのコンストラクターに渡すだけでよいのでしょうか?

私が使用するデータベースエンジンはMySQL v5.1で、Symfony2アプリケーションでDoctrine 2を使用しています。

51
Tobias Gies

https://www.doctrine-project.org/projects/doctrine-orm/en/2.6/reference/annotations-reference.html#annref_joincolumn

追加 nullable = falseJoinColumnアノテーションに:

@ORM\JoinColumn(..., nullable=false)
70
zim32

@ zim32がステートメントをどこに置くべきかを伝えなかったので、ただ投稿しました。そのため、試行錯誤をしなければなりませんでした。

Yaml:

manyToOne:
    {field}:
        targetEntity: {Entity}
        joinColumn:
            name: {field}
            nullable: false
            referencedColumnName: {id}
        cascade: ['persist']
1
Rafael Barros

[〜#〜] xml [〜#〜]これを行う方法の例が見つからなかったので、これを残します他の誰かがこれを探している場合のスニペット:

<many-to-one field="author" target-entity="User">
    <join-column name="author_id" referenced-column-name="id" nullable="false" />
</many-to-one>

nameおよびreferenced-column-nameは必須です。ドキュメントを参照してください: https://www.doctrine-project.org/projects/doctrine-orm/en/2.6/reference/xml-mapping.html#join-column-element

0
Stanzi1791