Update HashtagFollow model

This commit is contained in:
Daniel Supernault 2019-07-08 00:13:46 -06:00
parent d371c5a7de
commit 3b457c7afe
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 5 additions and 1 deletions

View File

@ -6,5 +6,9 @@ use Illuminate\Database\Eloquent\Model;
class HashtagFollow extends Model
{
//
protected $fillable = [
'user_id',
'profile_id',
'hashtag_id'
];
}