Newer
Older
dmpopidor / app / models / plan_section.rb
@Marta Ribeiro Marta Ribeiro on 3 Jun 2016 230 bytes DMPonline4 - RAILS 4.0 (#4)
class PlanSection < ActiveRecord::Base
  attr_accessible :plan_id, :release_time, :section_id, :user_id, :as => [:default, :admin]

  #associations between tables
  belongs_to :section
  belongs_to :plan
  belongs_to :user
  
end