class User
include Mongoid::Document
field :name, type: String
field :image_url, type: String
has_many :profiles, dependent: :destroy
end
class Profile
include Mongoid::Document
field :name, type: String
field :image_url, type: String
belongs_to :user, touch: true
end