Skip to content

Instantly share code, notes, and snippets.

@moeamaya
Last active November 6, 2017 16:57
Show Gist options
  • Save moeamaya/4d4dbdf15bd884c2c103a0efd71066ad to your computer and use it in GitHub Desktop.
Save moeamaya/4d4dbdf15bd884c2c103a0efd71066ad to your computer and use it in GitHub Desktop.
class Organization < ApplicationRecord
has_one :subscription
end
class Subscription < ApplicationRecord
has_many :payments
# stripe_id
# plan_id
# last_four
# card_type
# organization_id
# exp_month
# exp_year
# coupon_id
# coupon_name
end
class Payment < ApplicationRecord
belongs_to :subscription
# amount
# seats
# date
# times_tried
# is_paid
end
############################
# Future for multiple cards
############################
class CreditCard < ApplicationRecord
belongs_to :subscription
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment