mirror of https://github.com/pixelfed/pixelfed.git
22 lines
309 B
PHP
22 lines
309 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class GroupLimit extends Model
|
||
|
{
|
||
|
use HasFactory;
|
||
|
|
||
|
protected $casts = [
|
||
|
'limits' => 'json',
|
||
|
'metadata' => 'json'
|
||
|
];
|
||
|
|
||
|
protected $fillable = [
|
||
|
'profile_id',
|
||
|
'group_id'
|
||
|
];
|
||
|
}
|