osem-fcy/app/models/sponsor.rb
2017-08-29 12:16:17 +03:00

13 lines
402 B
Ruby

class Sponsor < ActiveRecord::Base
belongs_to :sponsorship_level
belongs_to :conference
serialize :swags, Hash
attr_accessor :type, :quantity, :swag_index, :hint_hash
has_paper_trail ignore: [:updated_at], meta: { conference_id: :conference_id }
mount_uploader :picture, PictureUploader, mount_on: :logo_file_name
validates :name, :website_url, :sponsorship_level, presence: true
end