6 lines
151 B
Ruby
Raw Normal View History

2011-06-21 04:48:53 +04:00
class User < ActiveRecord::Base
bitmask :music, :as => [:album, :single, :live, :bootleg, :soundtrack]
2011-06-22 11:23:07 +04:00
has_one :session
2011-11-30 03:08:00 +04:00
has_many :favorites
2011-06-21 04:48:53 +04:00
end