nps用户调研

This commit is contained in:
“xxq250”
2022-08-30 18:10:27 +08:00
parent d04ed7e008
commit 7148957368
26 changed files with 953 additions and 176 deletions

View File

@@ -0,0 +1,12 @@
class CreateUserNps < ActiveRecord::Migration[5.2]
def change
create_table :user_nps do |t|
t.references :user
t.string :action_type
t.integer :action_id
t.float :score
t.text :memo
t.timestamps
end
end
end