group_participation.rb 183 B

1234567
  1. class GroupParticipation < ApplicationRecord
  2. belongs_to :user
  3. belongs_to :group, polymorphic: true
  4. validates :user_id, presence: true
  5. validates :group_id, presence: true
  6. end