我有一个架构,我想更新并修补所有现有数据。旧国家/地区字段为“字符串”,而新的国家/地区字段现为“ObjectId”,指向国家/地区模式。几天之后,似乎无法找到解决方案。有人可以帮帮我吗?
旧架构
}
name: { type: String, required: true },
country: { type: String }
...
}
新架构
}
name: { type: String, require: true },
country: Schema.Types.ObjectId
}