Explorar el Código

Merge pull request #1597 from pixelfed/frontend-ui-refactor

Update command
daniel hace 6 años
padre
commit
2fa01c9350
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      app/Console/Commands/StatusDedupe.php

+ 1 - 0
app/Console/Commands/StatusDedupe.php

@@ -42,6 +42,7 @@ class StatusDedupe extends Command
     {
         DB::table('statuses')
             ->selectRaw('id, uri, count(uri) as occurences')
+            ->whereNull('deleted_at')
             ->whereNotNull('uri')
             ->groupBy('uri')
             ->orderBy('created_at')