1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-23 16:24:29 +00:00
pixelfed/app/MediaTag.php
Daniel Supernault 7e333059fb
Update models
2023-01-21 07:48:27 -07:00

15 lines
213 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class MediaTag extends Model
{
protected $guarded = [];
public function status()
{
return $this->belongsTo(Status::class);
}
}