我有用户模型和用户模型 has_one 配置文件模型。我也有 user.phone 和 user.profile.phone,但我想删除 user.phone,我将只使用 user.profile.phone。
在我删除 user.phone 之前,如果 user.phone 不为空,我想将 user.phone 复制到 user.profile.phone。然后我将删除 user.phone
例如:
user.phone = 123
user.profile.phone = 234
迁移后:
user.phone will be removed
user.profile.phone = 123 - 234
为此目的,适当的迁移是什么?