Commit bcf7054a419c9f438eb3ef44873c8d794c527224

Authored by Wilmer Ramones
1 parent b3e067eba5
Exists in master

modificado el campo de tema de string a text por lo largo que pueden ser los nombres

src/AppBundle/Entity/UnidadCurricularVolumenTema.php
@@ -14,9 +14,9 @@ use Doctrine\ORM\Mapping as ORM; @@ -14,9 +14,9 @@ use Doctrine\ORM\Mapping as ORM;
14 class UnidadCurricularVolumenTema 14 class UnidadCurricularVolumenTema
15 { 15 {
16 /** 16 /**
17 - * @var string 17 + * @var text
18 * 18 *
19 - * @ORM\Column(name="tema", type="string", length=50, nullable=false, options={"comment" = "nombre del estado"}) 19 + * @ORM\Column(name="tema", type="text", nullable=false, options={"comment" = "nombre del estado"})
20 */ 20 */
21 private $nombre; 21 private $nombre;
22 22