Update UserSetting model, cast compose_settings and other as json

This commit is contained in:
Daniel Supernault 2021-12-04 17:35:50 -07:00
parent 98f76abbe8
commit 0342027867
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 6 additions and 1 deletions

View File

@ -6,5 +6,10 @@ use Illuminate\Database\Eloquent\Model;
class UserSetting extends Model
{
protected $fillable = ['user_id'];
protected $fillable = ['user_id'];
protected $casts = [
'compose_settings' => 'json',
'other' => 'json'
];
}