// TODO :: Add not null constraint to the name column of the Project table
if (empty($projectName)) {
throw new \LorisException("ProjectName can't be null");
}
// TODO :: Add unique constraint to the name column of the Project table
$projectId = $factory->database()->pselectOne(...)