discourse/plugins/chat/app/models/chat_draft.rb

19 lines
464 B
Ruby

# frozen_string_literal: true
class ChatDraft < ActiveRecord::Base
belongs_to :user
belongs_to :chat_channel
end
# == Schema Information
#
# Table name: chat_drafts
#
# id :bigint not null, primary key
# user_id :integer not null
# chat_channel_id :integer not null
# data :text not null
# created_at :datetime not null
# updated_at :datetime not null
#