mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 00:03:16 +00:00
Add StatusHashtag model
This commit is contained in:
parent
d84b0c1d41
commit
05bf9b7aee
1 changed files with 10 additions and 0 deletions
10
app/StatusHashtag.php
Normal file
10
app/StatusHashtag.php
Normal file
|
@ -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 a new issue