Skip to content

Commit

Permalink
Revert "Updated db command for clearing tables (#991)"
Browse files Browse the repository at this point in the history
This reverts commit 5c0d36a.
  • Loading branch information
driesvints authored Dec 8, 2020
1 parent e569e04 commit de889d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Storage/DatabaseEntriesRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -358,8 +358,8 @@ public function prune(DateTimeInterface $before)
*/
public function clear()
{
$this->table('telescope_entries')->truncate();
$this->table('telescope_monitoring')->truncate();
$this->table('telescope_entries')->delete();
$this->table('telescope_monitoring')->delete();
}

/**
Expand Down

0 comments on commit de889d7

Please sign in to comment.