osem-fcy/app/models/sponsor.rb

14 lines
402 B
Ruby
Raw Normal View History

2014-06-05 17:51:22 +05:30
class Sponsor < ActiveRecord::Base
belongs_to :sponsorship_level
belongs_to :conference
2017-08-26 20:41:36 +03:00
serialize :swags, Hash
2017-08-25 20:04:19 +03:00
attr_accessor :type, :quantity, :swag_index, :hint_hash
2017-08-23 12:26:46 +03:00
has_paper_trail ignore: [:updated_at], meta: { conference_id: :conference_id }
2016-04-27 15:55:39 +02:00
mount_uploader :picture, PictureUploader, mount_on: :logo_file_name
2016-04-07 14:38:36 -06:00
validates :name, :website_url, :sponsorship_level, presence: true
2014-06-05 17:51:22 +05:30
end