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

22 lines
532 B
Ruby

# frozen_string_literal: true
class ChatMessageRevision < ActiveRecord::Base
belongs_to :chat_message
end
# == Schema Information
#
# Table name: chat_message_revisions
#
# id :bigint not null, primary key
# chat_message_id :integer
# old_message :text not null
# new_message :text not null
# created_at :datetime not null
# updated_at :datetime not null
#
# Indexes
#
# index_chat_message_revisions_on_chat_message_id (chat_message_id)
#