conversation_participation.rb 184 B

123456
  1. class ConversationParticipation < ApplicationRecord
  2. belongs_to :user
  3. belongs_to :conversation
  4. validates :user_id, presence: true
  5. validates :conversation_id, presence: true
  6. end