mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
16 lines
203 B
PHP
16 lines
203 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class UserFilter extends Model
|
|
{
|
|
protected $fillable = [
|
|
'user_id',
|
|
'filterable_id',
|
|
'filterable_type',
|
|
'filter_type'
|
|
];
|
|
}
|