osem-fcy/app/models/sponsorship_level.rb

11 lines
275 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class SponsorshipLevel < ApplicationRecord
validates :title, presence: true
2014-06-05 11:56:04 +05:30
belongs_to :conference
acts_as_list scope: :conference
2014-06-05 17:51:22 +05:30
has_many :sponsors
has_paper_trail ignore: [:updated_at], meta: { conference_id: :conference_id }
2014-06-05 11:56:04 +05:30
end