Skip to content

Commit bc60d79

Browse files
committed
Fixed RB-20329 - ambiguous clause on deleted_at
1 parent c3ac0a7 commit bc60d79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Models/License.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ public function scopeExpiredLicenses($query)
760760
->orWhere(function ($query) {
761761
$query->whereDate('expiration_date', '<=', Carbon::now());
762762
})
763-
->whereNull('deleted_at');
763+
->whereNull('licenses.deleted_at');
764764
}
765765

766766
/**

0 commit comments

Comments
 (0)