Kind of hard to explain but I'm going to try: I have a model called Message, which represents a request for an email to be sent out, a model called Segment which is pulled from a third-party application using a MySQL view (and is read-only), and finally a User model. Segment and message both belong to a user.
The problem is that I need to display a list of Segments as a multiple select listbox on the form to create a new Message, and store that data since an email is generated to our marketing department and should display the segments the user wants their message sent to. There also needs to be a "default" value which represents the user's entire list (e.g. "All my contacts" with a default value). However, I can't write to the view (nor do I want to since it's pulling from a third party app).
Now I'm confused about how to go about constructing this. I could create a new model called MessageSegment that joins messages and segments, but this leaves the issue of how to deal with the default value, since it cannot be added to the base Segment model but has to remain a selectable option.