Skip to content

Instantly share code, notes, and snippets.

@jlsuttles
Created February 22, 2012 01:09
Show Gist options
  • Save jlsuttles/1880353 to your computer and use it in GitHub Desktop.
Save jlsuttles/1880353 to your computer and use it in GitHub Desktop.
class ActivityAnswerStore
include Mongoid::Document
field :user_id, type: Integer
field :type, type: String
end
class PersonalValuesActivityAnswerStore < ActivityAnswerStore
field :values, type: Array
end
class ActivityAnswer < ActiveRecord::Base
# t.string :store_id
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment