1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-03-12 15:16:46 +00:00
pixelfed/app/HashtagFollow.php

22 lines
306 B
PHP
Raw Permalink Normal View History

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