about summary refs log tree commit diff
path: root/app/models/conversation_kick.rb
blob: c2dbdf50b23927934237c6a6eb961f5d7ab40eb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# == Schema Information
#
# Table name: conversation_kicks
#
#  id              :bigint(8)        not null, primary key
#  account_id      :bigint(8)        not null
#  conversation_id :bigint(8)        not null
#

class ConversationKick < ApplicationRecord
  belongs_to :account
  belongs_to :conversation
end