mirror of https://github.com/pixelfed/pixelfed.git
14 lines
183 B
PHP
14 lines
183 B
PHP
|
<?php
|
||
|
|
||
|
namespace App;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class MediaTag extends Model
|
||
|
{
|
||
|
public function status()
|
||
|
{
|
||
|
return $this->belongsTo(Status::class);
|
||
|
}
|
||
|
}
|