Resolve issue with raw sql backticks for postgresql migrations

pull/4122/head
idanoo 2 years ago
parent e4e7b5062a
commit 55dc9b0aaa
No known key found for this signature in database
GPG Key ID: 387387CDBC02F132

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

Loading…
Cancel
Save