Set default value for flags. #607

This commit is contained in:
Korina Cordero 2021-07-30 08:34:12 +00:00
parent 406568ab3d
commit 04e803510c

View file

@ -82,13 +82,13 @@ class Hub
// flag if hub can be auto assigned // flag if hub can be auto assigned
/** /**
* @ORM\Column(type="boolean") * @ORM\Column(type="boolean", options={"default"=false})
*/ */
protected $flag_hub_auto_assign; protected $flag_hub_auto_assign;
// flag if riders assigned to hub can be auto assigned // flag if riders assigned to hub can be auto assigned
/** /**
* @ORM\Column(type="boolean") * @ORM\Column(type="boolean", options={"default"=false})
*/ */
protected $flag_rider_auto_assign; protected $flag_rider_auto_assign;