1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-01-22 14:59:33 +00:00
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'
];
}