Hello, I want to create models with child models. As an example, one model Event and submodels OneTimeEvent and RecurringEvent. How should I do this? One possibility would be to use
class Event < Activerecord class OneTimeEvent < Event class RecurringEvent < Event Does this work correctly? And how/where should I store the special information each type has (i.e. day_of_month for recurring)? Thanks Jonas --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

