LogEntry.php 779 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Gedmo\Loggable\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5. * Gedmo\Loggable\Entity\LogEntry
  6. *
  7. * @ORM\Table(
  8. * name="ext_log_entries",
  9. * options={"row_format":"DYNAMIC"},
  10. * indexes={
  11. * @ORM\Index(name="log_class_lookup_idx", columns={"object_class"}),
  12. * @ORM\Index(name="log_date_lookup_idx", columns={"logged_at"}),
  13. * @ORM\Index(name="log_user_lookup_idx", columns={"username"}),
  14. * @ORM\Index(name="log_version_lookup_idx", columns={"object_id", "object_class", "version"})
  15. * }
  16. * )
  17. * @ORM\Entity(repositoryClass="Gedmo\Loggable\Entity\Repository\LogEntryRepository")
  18. */
  19. class LogEntry extends MappedSuperclass\AbstractLogEntry
  20. {
  21. /**
  22. * All required columns are mapped through inherited superclass
  23. */
  24. }