2015-01-14 18:30:20 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\Models\DDC2825;
|
|
|
|
|
2015-01-14 21:16:42 +03:00
|
|
|
/** @Entity @Table(name="explicit_table", schema="explicit_schema") */
|
2015-01-14 18:30:20 +03:00
|
|
|
class ExplicitSchemaAndTable
|
|
|
|
{
|
|
|
|
const CLASSNAME = __CLASS__;
|
|
|
|
|
2015-01-14 21:16:42 +03:00
|
|
|
/** @Id @Column(type="integer") @GeneratedValue(strategy="AUTO") */
|
2015-01-14 18:30:20 +03:00
|
|
|
public $id;
|
|
|
|
}
|