<?php
namespace Jo\Model;
/**
* @Entity
* @InheritanceType("SINGLE_TABLE")
* @DiscriminatorColumn(name="resource_type", type="string")
* @DiscriminatorMap({"article" = "\Jo\Model\Article\ArticleVote", "comment" = "\Jo\Model\Article\CommentVote"})
*/
class Vote
{
/**
* @Id
* @Column(type="integer")
* @GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ManyToOne(targetEntity="\Jo\Model\User\User")
*/
protected $user;
/**
* @Column(type="integer")
*/
protected $weight;
public function setWeight($weight)
{
$this->weight = $weight;
return $this;
}
public function getWeight()
{
return $this->weight;
}
}
И
<?php
namespace Jo\Model\Article;
use Jo\Model;
/**
* @Entity
*/
class CommentVote extends Model\Vote
{
/**
* @ManyToOne(targetEntity="Comment")
*/
protected $comment;
public function setComment(Comment $comment)
{
$this->comment = $comment;
return $this;
}
public function getComment()
{
return $this->comment;
}
}
Генерирует следующую схему таблицы:
CREATE TABLE Vote (
id INT AUTO_INCREMENT NOT NULL,
user_id INT DEFAULT NULL,
article_id INT DEFAULT NULL,
comment_id INT DEFAULT NULL,
weight INT NOT NULL,
resource_type VARCHAR(255) NOT NULL,
INDEX IDX_FA222A5AA76ED395 (user_id),
INDEX IDX_FA222A5A62922701 (article_id),
INDEX IDX_FA222A5AF8697D13 (comment_id),
PRIMARY KEY(id)
) ENGINE = InnoDB;
, которая выглядит правильно.
Однако, когда я делаю:
$commentVote = new CommentVote();
$commentVote->setComment($comment); // $comment instance of Comment
$commentVote->setWeight(1);
$em->persist($commentVote);
$em->flush();
, я получаю следующую ошибку:
Message: SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'resource_type' cannot be null
Нужно ли вручную устанавливать свойство resource_type, используемое в качестве дискриминатора?Я не понимаю этого вручную, если использую Single Table Inheritance для двух разных классов.
Если я что-то не так делаю, я не смог найти никакой ценной информации об этом виде реализации.
спасибо.