fix: remove or rename invalid model relations

Requests don't have distributor or region relations, and Announce relations were renamed incorrectly. The relations don't appear to be used for anything currently.
This commit is contained in:
Roardom
2025-10-03 05:11:31 +00:00
parent 9c4256b4b5
commit ca4ea3dd92
3 changed files with 2 additions and 22 deletions
-10
View File
@@ -57,14 +57,4 @@ class Distributor extends Model
{
return $this->hasMany(Torrent::class);
}
/**
* Get the requests for this distributor.
*
* @return HasMany<TorrentRequest, $this>
*/
public function requests(): HasMany
{
return $this->hasMany(TorrentRequest::class);
}
}