mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 04:23:19 +00:00
Fix strict mode sql issue
This commit is contained in:
@@ -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;
|
||||
|
||||
|
@@ -22,7 +22,7 @@ class Token
|
||||
{
|
||||
/**
|
||||
* @ORM\Id
|
||||
* @ORM\Column(type="string", length=16)
|
||||
* @ORM\Column(type="string", length=128)
|
||||
*/
|
||||
private $value;
|
||||
|
||||
|
Reference in New Issue
Block a user