diff options
Diffstat (limited to 'app/models/conversation_kick.rb')
-rw-r--r-- | app/models/conversation_kick.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/models/conversation_kick.rb b/app/models/conversation_kick.rb new file mode 100644 index 000000000..c2dbdf50b --- /dev/null +++ b/app/models/conversation_kick.rb @@ -0,0 +1,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 |