mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-20 11:45:57 +08:00
25 lines
558 B
Ruby
25 lines
558 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: feedback_message_histories
|
|
#
|
|
# id :integer not null, primary key
|
|
# feedback_id :integer
|
|
# user_id :integer
|
|
# title :string(255)
|
|
# content :text(65535)
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_feedback_message_histories_on_feedback_id (feedback_id)
|
|
# index_feedback_message_histories_on_user_id (user_id)
|
|
#
|
|
|
|
class FeedbackMessageHistory < ApplicationRecord
|
|
|
|
belongs_to :feedback
|
|
belongs_to :user
|
|
|
|
end
|