From cda161732133660502ffa896414e26f78dd4b5ba Mon Sep 17 00:00:00 2001 From: Wilmer Date: Wed, 8 Mar 2017 10:23:34 -0400 Subject: [PATCH] Pasada las fechas del servicio solicitado por docente a date time para que muestre la fecha con las horas exactas --- src/AppBundle/Entity/DocenteServicio.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/AppBundle/Entity/DocenteServicio.php b/src/AppBundle/Entity/DocenteServicio.php index f337514..a56499b 100644 --- a/src/AppBundle/Entity/DocenteServicio.php +++ b/src/AppBundle/Entity/DocenteServicio.php @@ -63,15 +63,15 @@ class DocenteServicio { */ protected $idServicioCe; - /** @ORM\Column(type="date", nullable=false, options={"comment" = "Fecha de creación de la solicitud"}) + /** @ORM\Column(type="datetime", nullable=false, options={"comment" = "Fecha de creación de la solicitud"}) /** - * @Assert\Date() + * @Assert\DateTime() */ private $fechaSolicitud; - /** @ORM\Column(type="date", nullable=false, options={"comment" = "Fecha de actualizada la solicitud"}) + /** @ORM\Column(type="datetime", nullable=false, options={"comment" = "Fecha de actualizada la solicitud"}) /** - * @Assert\Date() + * @Assert\DateTime() */ private $fechaUltimaActualizacion; -- 2.0.0