Merge branch 'develop' into standalone_develop

This commit is contained in:
2022-11-08 13:41:00 +08:00
6 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
class CreateFeedbacks < ActiveRecord::Migration[5.2]
def change
create_table :feedbacks do |t|
t.references :user
t.text :content
t.timestamps
end
end
end