mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 11:44:02 +00:00
10 lines
275 B
Ruby
10 lines
275 B
Ruby
# frozen_string_literal: true
|
|
|
|
class SponsorshipLevel < ApplicationRecord
|
|
validates :title, presence: true
|
|
belongs_to :conference
|
|
acts_as_list scope: :conference
|
|
has_many :sponsors
|
|
|
|
has_paper_trail ignore: [:updated_at], meta: { conference_id: :conference_id }
|
|
end
|