Updated user agent column in visits table to have a length of 512

This commit is contained in:
Alejandro Celaya
2018-11-10 18:59:25 +01:00
parent d9d4c8a70c
commit 4070b1e23d
4 changed files with 38 additions and 4 deletions

View File

@@ -39,7 +39,7 @@ class Visit extends AbstractEntity implements JsonSerializable
private $remoteAddr;
/**
* @var string
* @ORM\Column(type="string", length=256, name="user_agent", nullable=true)
* @ORM\Column(type="string", length=512, name="user_agent", nullable=true)
*/
private $userAgent;
/**