Hi,
i have an entity Museum, and each Museum has 1..N Resources that will be preferably images, which will be uploaded to my GC backend, and then i'll use the URL of the uploaded file as the value.
Museum: id, name
Resource: id, type, value, museum_id
type=image
value=url_of_image_after_upload
The question is, how can i model this using relations? I've checked the 1:1 tutorial and the N:M tutorial, but can't find a proper one for my case.
Could someone help with that? Thank you!!