fb055ca75d
SchemaTool now creates all Id columns not just only the first one. Insert statement for child entity now contains parameter for additional key columns only once.
22 lines
349 B
PHP
22 lines
349 B
PHP
<?php
|
|
namespace Doctrine\Tests\Models\CompositeKeyInheritance;
|
|
|
|
/**
|
|
* @Entity
|
|
*/
|
|
class JoinedChildClass extends JoinedRootClass
|
|
{
|
|
/**
|
|
* @var string
|
|
* @Column(type="string")
|
|
*/
|
|
public $extension = 'ext';
|
|
|
|
/**
|
|
* @var string
|
|
* @Column(type="string")
|
|
* @Id
|
|
*/
|
|
private $additionalId = 'additional';
|
|
}
|