mirror of https://github.com/pixelfed/pixelfed.git
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'
|
||
|
];
|
||
|
}
|