Skip to content

Instantly share code, notes, and snippets.

@berellevy
Created August 19, 2020 03:12
Show Gist options
  • Save berellevy/1aea29283afbbb96f8667352ed747768 to your computer and use it in GitHub Desktop.
Save berellevy/1aea29283afbbb96f8667352ed747768 to your computer and use it in GitHub Desktop.
class Cart < ApplicationRecord
belongs_to :user
has_many :cart_items, as: :itemable
...
end
class Purchase < ApplicationRecord
belongs_to :user
has_many :cart_items, as: :itemable
...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment