Fix strict mode sql issue

This commit is contained in:
Nicolas Le Goff
2015-02-23 16:23:34 +01:00
parent 6b89c123e3
commit 5a55732b46
5 changed files with 9 additions and 12 deletions

View File

@@ -80,14 +80,14 @@ class ApiApplication
/**
* @var string
*
* @ORM\Column(name="client_id", type="string", length=32, nullable=false)
* @ORM\Column(name="client_id", type="string", length=128, nullable=false)
*/
private $clientId;
/**
* @var string
*
* @ORM\Column(name="client_secret", type="string", length=32, nullable=false)
* @ORM\Column(name="client_secret", type="string", length=128, nullable=false)
*/
private $clientSecret;

View File

@@ -22,7 +22,7 @@ class Token
{
/**
* @ORM\Id
* @ORM\Column(type="string", length=16)
* @ORM\Column(type="string", length=128)
*/
private $value;