我有用户模型和反馈模型,用户模型有 user_type 属性。反馈模型也有 user_id 属性。我想将 user_type 列添加到反馈模型中,就像在用户模型中一样。例如迁移后应该是这样的
User
id:123
user_type: "customer"
Feedback
id:56
user_id:123
user_type : "customer"
我有用户模型和反馈模型,用户模型有 user_type 属性。反馈模型也有 user_id 属性。我想将 user_type 列添加到反馈模型中,就像在用户模型中一样。例如迁移后应该是这样的
User
id:123
user_type: "customer"
Feedback
id:56
user_id:123
user_type : "customer"