6 lines
131 B
Ruby
6 lines
131 B
Ruby
|
|
class Subscription < ActiveRecord::Base
|
||
|
|
attr_accessible :user_id, :conference_id
|
||
|
|
belongs_to :conference
|
||
|
|
belongs_to :user
|
||
|
|
end
|