This is how the schema for the four models look: http://pastie.org/1576759
The plan table stores all the data on the actual plans. The subscription stores each month that a user 're-subscribes' to the service. The transaction stores the payment related info.
How would the associations work between models ?
E.g. a user :belongs_to plan, :through => :subscription ?
A subscription "has_many" :plans ?
I am a bit fuzzy on how this all ties together with respect to Rails and associations.