Hello everyone. I’m building a gallery app where users can upload multiple photos and later open each image to edit details such as captions, tags, etc
However, to store captions and tags properly, each photo needs to exist as its own row in the database. The problem is that when users upload multiple images at once, Glide stores all of them in a single cell as an array, instead of creating one row per photo.
Is there a way in Glide to automatically take an array of uploaded images and split it into individual rows (one image per row) after the upload?
Any guidance or recommended approaches would be greatly appreciated. Thank you!