orbit-basic/app/models/other_account.rb

15 lines
256 B
Ruby
Raw Normal View History

class OtherAccount
include Mongoid::Document
include Mongoid::Timestamps
field :type
field :email
field :encrypted_password
2012-04-27 14:14:44 +00:00
#attr_encrypted :encrypted_password, :key => 'rulingorbit.com', :encode => true
belongs_to :user
end