Set default value for the flags to false. #324
This commit is contained in:
parent
e202fb650c
commit
38d56d9c09
1 changed files with 3 additions and 3 deletions
|
|
@ -166,17 +166,17 @@ class Customer
|
|||
protected $privpol_promo;
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="boolean")
|
||||
* @ORM\Column(type="boolean", options={"default":false})
|
||||
*/
|
||||
protected $flag_promo_email;
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="boolean")
|
||||
* @ORM\Column(type="boolean", options={"default":false})
|
||||
*/
|
||||
protected $flag_promo_sms;
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="boolean")
|
||||
* @ORM\Column(type="boolean", options={"default":false})
|
||||
*/
|
||||
protected $flag_dpa_consent;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue