Created
July 11, 2018 23:52
-
-
Save anchietajunior/898158a7e6cbf577e5fa9600bab4e91b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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