/**
  * {@inheritdoc}
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('algatux:influx:database:drop')->setDescription('Drops the configured database')->addOption('if-exists', null, InputOption::VALUE_NONE, 'Don\'t trigger an error, when the database doesn\'t exist')->addOption('force', null, InputOption::VALUE_NONE, 'Set this parameter to execute this action');
 }
 /**
  * {@inheritdoc}
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('algatux:influx:database:create')->setDescription('Creates the configured database')->addOption('if-not-exists', null, InputOption::VALUE_NONE, 'Don\'t trigger an error, when the database already exists');
 }