【发布时间】:2013-12-12 11:29:47
【问题描述】:
我在 mongoid 中有一个模型用户,其属性为 :country。我想从模型和任何现有用户文档中删除此字段。我怎样才能做到这一点?
# user.rb
class User
include Mongoid::Document
field :name, type: String
#field :country, type: String --> field removed from model
end
【问题讨论】:
标签: ruby-on-rails database model mongoid