28 lines
779 B
PHP
28 lines
779 B
PHP
<?php
|
|
|
|
namespace Gedmo\Loggable\Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* Gedmo\Loggable\Entity\LogEntry
|
|
*
|
|
* @ORM\Table(
|
|
* name="ext_log_entries",
|
|
* options={"row_format":"DYNAMIC"},
|
|
* indexes={
|
|
* @ORM\Index(name="log_class_lookup_idx", columns={"object_class"}),
|
|
* @ORM\Index(name="log_date_lookup_idx", columns={"logged_at"}),
|
|
* @ORM\Index(name="log_user_lookup_idx", columns={"username"}),
|
|
* @ORM\Index(name="log_version_lookup_idx", columns={"object_id", "object_class", "version"})
|
|
* }
|
|
* )
|
|
* @ORM\Entity(repositoryClass="Gedmo\Loggable\Entity\Repository\LogEntryRepository")
|
|
*/
|
|
class LogEntry extends MappedSuperclass\AbstractLogEntry
|
|
{
|
|
/**
|
|
* All required columns are mapped through inherited superclass
|
|
*/
|
|
}
|