Added source collection draft

This commit is contained in:
Kevin Frantz
2018-10-25 22:03:10 +02:00
parent e066e8b362
commit 4bd1078491
6 changed files with 342 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ use App\Entity\Node;
* @ORM\Table(name="source")
* @ORM\InheritanceType("JOINED")
* @ORM\DiscriminatorColumn(name="discr", type="string")
* @ORM\DiscriminatorMap({"user" = "UserSource","name" = "NameSource"})
* @ORM\DiscriminatorMap({"user" = "UserSource","name" = "NameSource","collection" = "SourceCollection"})
*/
abstract class AbstractSource extends AbstractEntity implements SourceInterface
{