Skip to content

Instantly share code, notes, and snippets.

@berellevy
Created August 19, 2020 03:07
Show Gist options
  • Save berellevy/13e81293675c8e879c5affbb972f7f97 to your computer and use it in GitHub Desktop.
Save berellevy/13e81293675c8e879c5affbb972f7f97 to your computer and use it in GitHub Desktop.
class CartItem < ApplicationRecord
belongs_to :itemable, polymorphic: true
belongs_to :item
validates :itemable_type, :itemable_id, presence: true
...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment