pixelfed/app/HashtagFollow.php

22 lines
307 B
PHP
Raw Normal View History

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class HashtagFollow extends Model
{
2019-07-08 06:13:46 +00:00
protected $fillable = [
'user_id',
'profile_id',
'hashtag_id'
];
const MAX_LIMIT = 250;
public function hashtag()
{
return $this->belongsTo(Hashtag::class);
}
}