I have this annotation setup:
/**
* @Column(type="string", nullable=true)
*/
public $private_key;
On ->save() I get the following message :
private_key is required
Are nullable and required considered seperate?
I have this annotation setup:
/**
* @Column(type="string", nullable=true)
*/
public $private_key;
On ->save() I get the following message :
private_key is required
Are nullable and required considered seperate?