1
0
Fork 0
forked from mirror/pixelfed
pixelfed/app/StatusHashtag.php

11 lines
157 B
PHP
Raw Normal View History

2018-05-31 21:15:37 -06:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class StatusHashtag extends Model
{
protected $fillable = ['status_id', 'hashtag_id'];
}