forked from mirror/pixelfed
11 lines
157 B
PHP
11 lines
157 B
PHP
|
<?php
|
||
|
|
||
|
namespace App;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class StatusHashtag extends Model
|
||
|
{
|
||
|
protected $fillable = ['status_id', 'hashtag_id'];
|
||
|
}
|