新增:用户反馈意见后台管理逻辑

This commit is contained in:
2022-11-09 11:37:12 +08:00
parent 3e5c1da2c5
commit 83b46fcb50
11 changed files with 176 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
class CreateFeedbackMessageHistories < ActiveRecord::Migration[5.2]
def change
create_table :feedback_message_histories do |t|
t.references :feedback
t.references :user
t.string :title
t.text :content
t.timestamps
end
end
end