Nette\Database\Structure::getPrimaryKey PHP Method

getPrimaryKey() public method

public getPrimaryKey ( $table )
    public function getPrimaryKey($table)
    {
        $this->needStructure();
        $table = $this->resolveFQTableName($table);
        if (!isset($this->structure['primary'][$table])) {
            return NULL;
        }
        return $this->structure['primary'][$table];
    }