1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pixelfed_ynh.git synced 2024-09-03 20:06:04 +02:00

Update command

This commit is contained in:
Daniel Supernault 2019-08-12 03:12:03 -06:00
parent 63670dc24e
commit 749d5101f4
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -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')