Merge pull request #4122 from idanoo/dev

Resolve issue with backticks in raw SQL for postgresql migrations
pull/4125/head
daniel 2023-01-29 01:18:28 -07:00 zatwierdzone przez GitHub
commit 262db2778f
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -71,7 +71,7 @@ class FixDuplicateProfiles extends Command
{
$duplicates = DB::table('profiles')
->whereNull('domain')
->select('username', DB::raw('COUNT(*) as `count`'))
->select('username', DB::raw('COUNT(*) as "count"'))
->groupBy('username')
->havingRaw('COUNT(*) > 1')
->pluck('username');