Commit eece16566abaadacc9d94ae14ac42b0471475fa1

Authored by Bruno Noronha
1 parent d3fec01d
Exists in master

Grava informações de ultimo usuário logado na tabela log_user_logado

src/Cacic/CommonBundle/Resources/config/doctrine/LogUserLogado.orm.yml 0 → 100644
... ... @@ -0,0 +1,30 @@
  1 +Cacic\CommonBundle\Entity\LogUserLogado:
  2 + type: entity
  3 + table: log_user_logado
  4 + repositoryClass: Cacic\CommonBundle\Entity\LogUserLogadoRepository
  5 + fields:
  6 + idLogUserLogado:
  7 + id: true
  8 + type: integer
  9 + unsigned: false
  10 + nullable: false
  11 + column: id_log_user_logado
  12 + generator:
  13 + strategy: IDENTITY
  14 + data:
  15 + type: datetime
  16 + nullable: false
  17 + column: data
  18 + usuario:
  19 + type: text
  20 + nullable: true
  21 + manyToOne:
  22 + idComputador:
  23 + targetEntity: Computador
  24 + cascade: { }
  25 + mappedBy: null
  26 + inversedBy: null
  27 + joinColumns:
  28 + id_computador:
  29 + referencedColumnName: id_computador
  30 + orphanRemoval: false
0 31 \ No newline at end of file
... ...