Still kind of new to Rails & I'm working on a cms. I've been wondering which would be the best way to give each post it's own gallery.
Post has_one gallery
Gallery has_many images
or just
Post has_many images
I'm pretty users will not want to have more than 1 gallery per post, so which one would be the best solution in this case?