1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-23 16:24:29 +00:00
pixelfed/app/Models/ProfileAlias.php
2023-08-07 23:48:58 -06:00

17 lines
292 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use App\Profile;
class ProfileAlias extends Model
{
use HasFactory;
public function profile()
{
return $this->belongsTo(Profile::class);
}
}