/** * Removes the object from the database without archiving it. * * @param PropelPDO $con Optional connection object * * @return The current object (for fluent API support) */ public function deleteWithoutArchive(PropelPDO $con = null) { $this->archiveOnDelete = false; return $this->delete($con); }