2012-10-01 21:27:32 +00:00
|
|
|
module JamRuby
|
|
|
|
|
class Band < ActiveRecord::Base
|
|
|
|
|
|
2012-10-28 02:35:28 +00:00
|
|
|
self.primary_key = 'id'
|
2012-10-01 21:27:32 +00:00
|
|
|
|
2012-10-28 02:35:28 +00:00
|
|
|
has_and_belongs_to_many :users, :class_name => "JamRuby::User"
|
|
|
|
|
has_many :genres, :class_name => "JamRuby::Genre"
|
2012-10-01 21:27:32 +00:00
|
|
|
|
|
|
|
|
end
|
|
|
|
|
end
|