merge from develop

This commit is contained in:
2022-11-09 14:37:27 +08:00
13 changed files with 191 additions and 1 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