Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439 Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
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
|
|
*/
|
|
}
|