Pimcore\Model\Tool\Targeting\Persona\Dao::create PHP Method

create() public method

Create a new record for the object in database
public create ( ) : boolean
return boolean
    public function create()
    {
        $this->db->insert("targeting_personas", []);
        $this->model->setId($this->db->lastInsertId());
        return $this->save();
    }