InfyOm\Generator\Common\CommandData::checkForDiffPrimaryKey PHP Method

checkForDiffPrimaryKey() private method

    private function checkForDiffPrimaryKey()
    {
        foreach ($this->inputFields as $field) {
            if (isset($field['primary']) && $field['primary'] && $field['fieldName'] != 'id') {
                $this->setOption('primary', $field['fieldName']);
                break;
            }
        }
    }