Skip to content

Instantly share code, notes, and snippets.

@anchietajunior
Created July 11, 2018 23:52
Show Gist options
  • Save anchietajunior/898158a7e6cbf577e5fa9600bab4e91b to your computer and use it in GitHub Desktop.
Save anchietajunior/898158a7e6cbf577e5fa9600bab4e91b to your computer and use it in GitHub Desktop.
class User
has_one :plan
has_many :payments
def update_plan(plan)
self.update_columns(plan: plan)
end
def create_payment
Payment.create(user: self)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment