dropUser method

void dropUser()

Implementation

void dropUser() {
  _setPassword();

  "psql --host=${_dbSettings.host} --port=${_dbSettings.port} -c 'drop user if exists  ${_dbSettings.username};' -U postgres"
      .run;
}