Add StatusHashtag model

This commit is contained in:
Daniel Supernault 2018-05-31 21:15:37 -06:00
parent d84b0c1d41
commit 05bf9b7aee
1 changed files with 10 additions and 0 deletions

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