/**
  * Get an improved stream stub file with more power, yayy!
  *
  * @param  string $table
  * @param  bool   $create
  *
  * @return string
  */
 protected function getStub($table, $create)
 {
     $path = __DIR__ . '/../../../resources/stubs/database/migrations';
     if ($this->input->getOption('fields') && $this->input->getOption('stream')) {
         return $this->files->get("{$path}/fields.stub");
     }
     if ($this->input->getOption('stream')) {
         return $this->files->get("{$path}/stream.stub");
     }
     return parent::getStub($table, $create);
 }