mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
491 B
PHP
25 lines
491 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class HashtagRelated extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $guarded = [];
|
|
|
|
/**
|
|
* The attributes that should be mutated to dates and other custom formats.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts = [
|
|
'related_tags' => 'array',
|
|
'last_calculated_at' => 'datetime',
|
|
'last_moderated_at' => 'datetime',
|
|
];
|
|
}
|