Commit cda161732133660502ffa896414e26f78dd4b5ba

Authored by Wilmer
1 parent 594fb52484
Exists in master

Pasada las fechas del servicio solicitado por docente a date time para que muest…

…re la fecha con las horas exactas
Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
src/AppBundle/Entity/DocenteServicio.php
... ... @@ -63,15 +63,15 @@ class DocenteServicio {
63 63 */
64 64 protected $idServicioCe;
65 65  
66   - /** @ORM\Column(type="date", nullable=false, options={"comment" = "Fecha de creación de la solicitud"})
  66 + /** @ORM\Column(type="datetime", nullable=false, options={"comment" = "Fecha de creación de la solicitud"})
67 67 /**
68   - * @Assert\Date()
  68 + * @Assert\DateTime()
69 69 */
70 70 private $fechaSolicitud;
71 71  
72   - /** @ORM\Column(type="date", nullable=false, options={"comment" = "Fecha de actualizada la solicitud"})
  72 + /** @ORM\Column(type="datetime", nullable=false, options={"comment" = "Fecha de actualizada la solicitud"})
73 73 /**
74   - * @Assert\Date()
  74 + * @Assert\DateTime()
75 75 */
76 76 private $fechaUltimaActualizacion;
77 77  
... ...