aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/admin/user.rb
blob: 6c4eb03b06777d29a1fb8f53a733b656e2c3cb4f (plain) (blame)
1
2
3
4
5
6
7
8
class Admin::User < ActiveRecord::Base
  belongs_to :account
  store :settings, :accessors => [ :color, :homepage ]
  store_accessor :settings, :favorite_food
  store :preferences, :accessors => [ :remember_login ]
  store :json_data, :accessors => [ :height, :weight ], :coder => JSON
  store :json_data_empty, :accessors => [ :is_a_good_guy ], :coder => JSON
end