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

14 lines
183 B
PHP
Raw Normal View History

2020-07-14 23:04:51 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class MediaTag extends Model
{
public function status()
{
return $this->belongsTo(Status::class);
}
}