Update ProfileMigration model, add target relation

This commit is contained in:
Daniel Supernault 2024-03-05 00:29:37 -07:00
parent 4a6be62128
commit 3f0539978e
No known key found for this signature in database
GPG key ID: 23740873EE6F76A1

View file

@ -16,4 +16,9 @@ class ProfileMigration extends Model
{
return $this->belongsTo(Profile::class, 'profile_id');
}
public function target()
{
return $this->belongsTo(Profile::class, 'target_profile_id');
}
}