Commit c729758698b835d2ffdca6325df5a96753e14972

Authored by Bruno Menezes
1 parent 8d5d256d
Exists in master and in 1 other branch 3.1

inserindo tablea session

src/Cacic/CommonBundle/Resources/config/doctrine/Session.orm.yml 0 → 100644
... ... @@ -0,0 +1,20 @@
  1 +Cacic\CommonBundle\Entity\Session:
  2 + type: entity
  3 + table: session
  4 + repositoryClass: Cacic\CommonBundle\Entity\SessionRepository
  5 + fields:
  6 + sessionId:
  7 + id: true
  8 + type: text
  9 + nullable: false
  10 + column: session_id
  11 + sessionValue:
  12 + type: text
  13 + fixed: false
  14 + nullable: false
  15 + column: session_value
  16 + sessionTime:
  17 + type: text
  18 + fixed: false
  19 + nullable: false
  20 + column: session_time
0 21 \ No newline at end of file
... ...