Add StatusHashtag model

This commit is contained in:
Daniel Supernault 2018-05-31 21:15:37 -06:00
parent d84b0c1d41
commit 05bf9b7aee

10
app/StatusHashtag.php Normal file
View file

@ -0,0 +1,10 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class StatusHashtag extends Model
{
protected $fillable = ['status_id', 'hashtag_id'];
}