I've got Tenants, Artists and ArtistData
One Tenant, can have many Artists.
Artist can have one ArtistData per Tenant and Artist.
$artist->artistData()->create([
'description' => 'test',
]);```
artistData has two fields, `tenant_id` and `artist_id`.
Is there a way i can define my relationships/other ways to have the `tenant_id` be filled out automatically?