1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-21 23:32:39 +00:00
pixelfed/app/StatusArchived.php
Daniel Supernault 7e333059fb
Update models
2023-01-21 07:48:27 -07:00

13 lines
208 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class StatusArchived extends Model
{
use HasFactory;
protected $guarded = [];
}