mirror of
https://github.com/BillyOutlast/UNIT3D.git
synced 2026-02-04 03:01:20 +01:00
16 lines
258 B
PHP
16 lines
258 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class FansdbMeta extends Model
|
|
{
|
|
protected $guarded = [];
|
|
public $timestamps = false;
|
|
|
|
public function torrent()
|
|
{
|
|
return $this->belongsTo(Torrent::class);
|
|
}
|
|
}
|