DEV Community

Discussion on: Integrate the new Stripe Checkout in Ruby on Rails.

Collapse
 
cecilerx profile image
Cécile Rougnaux

I have a question for my models:
Should I set them like :

class user 
has_many :subscriptions 

class subscription
belongs_to: user
Enter fullscreen mode Exit fullscreen mode

and in this case, when I write the migration to create the subscriptions table:

user_id:references
Enter fullscreen mode Exit fullscreen mode

Thanks for your help!