mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-19 13:01:26 +00:00
17 lines
310 B
PHP
17 lines
310 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ImportPost extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $casts = [
|
|
'media' => 'array',
|
|
'creation_date' => 'datetime',
|
|
'metadata' => 'json'
|
|
];
|
|
}
|