mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-06 06:44:50 +00:00
16 lines
247 B
PHP
16 lines
247 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class GroupInteraction extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $casts = [
|
|
'metadata' => 'array'
|
|
];
|
|
}
|