Add nullable fields to fix register bug
This commit is contained in:
parent
469e2673dd
commit
f7c9931d9f
1 changed files with 2 additions and 2 deletions
|
|
@ -51,13 +51,13 @@ class MobileSession
|
|||
|
||||
// phone number
|
||||
/**
|
||||
*@ORM\Column(type="string", length=12)
|
||||
*@ORM\Column(type="string", length=12, nullable=true)
|
||||
*/
|
||||
protected $phone_number;
|
||||
|
||||
// confirm code that we send via SMS
|
||||
/**
|
||||
*@ORM\Column(type="string", length=6)
|
||||
*@ORM\Column(type="string", length=6, nullable=true)
|
||||
*/
|
||||
protected $confirm_code;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue