mirror of https://github.com/pixelfed/pixelfed
Add StatusHashtag model
parent
d84b0c1d41
commit
05bf9b7aee
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class StatusHashtag extends Model
|
||||
{
|
||||
protected $fillable = ['status_id', 'hashtag_id'];
|
||||
}
|
Loading…
Reference in New Issue