select('migrate_example_beer_comment', 'mec') ->fields('mec', ['cid', 'cid_parent', 'name', 'mail', 'aid', 'body', 'bid', 'subject']) ->orderBy('cid_parent', 'ASC'); return $query; } /** * {@inheritdoc} */ public function fields() { $fields = [ 'cid' => $this->t('Comment ID'), 'cid_parent' => $this->t('Parent comment ID in case of comment replies'), 'name' => $this->t('Comment name (if anon)'), 'mail' => $this->t('Comment email (if anon)'), 'aid' => $this->t('Account ID (if any)'), 'bid' => $this->t('Beer ID that is being commented upon'), 'subject' => $this->t('Comment subject'), ]; return $fields; } /** * {@inheritdoc} */ public function getIds() { return [ 'cid' => [ 'type' => 'integer', 'alias' => 'mec', ], ]; } }