PartKeepr\CoreBundle\DoctrineMigrations\Version20150708120022::getNodeIds PHP Method

getNodeIds() public method

Returns the node IDs for the table.
public getNodeIds ( $table ) : array
$table
return array
    public function getNodeIds($table)
    {
        $qb = $this->connection->createQueryBuilder();
        $qb->select('id')->from($table)->orderBy('id', 'ASC');
        return $this->connection->fetchAll($qb->getSQL());
    }