Restrict keyhandle length to 64 chars to ensure compatibility with some older MySQL versions.

This commit is contained in:
Jan Böhmer 2020-01-01 16:12:15 +01:00
parent be34a0f734
commit 84cb5acf6a
2 changed files with 2 additions and 2 deletions

View file

@ -47,7 +47,7 @@ class U2FKey implements TwoFactorKeyInterface
protected $id;
/**
* @ORM\Column(type="string")
* @ORM\Column(type="string", length=64)
* @var string
**/
public $keyHandle;