pixelfed/app/HashtagFollow.php

15 lines
190 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'
];
}