🆙 More fixes 🆙

This commit is contained in:
Remco
2026-01-19 20:50:18 +01:00
parent b983f325f4
commit 93d3067306
5 changed files with 21 additions and 8 deletions
@@ -14,6 +14,9 @@ class PasswordResetToken extends Model
// timestamps = true, but we don't have "UPDATED_AT". To prevent an error, we set the default value to `null`.
public const UPDATED_AT = null;
/**
* @return BelongsTo<User, $this>
*/
public function user(): BelongsTo
{
return $this->belongsTo(User::class, 'email', 'mail');