12 lines
272 B
Ruby
12 lines
272 B
Ruby
class DisplayAdEvent < ApplicationRecord
|
|
self.ignored_columns = %w[
|
|
context_id
|
|
counts_for
|
|
]
|
|
|
|
belongs_to :display_ad
|
|
belongs_to :user
|
|
|
|
validates :category, inclusion: { in: %w[impression click] }
|
|
validates :context_type, inclusion: { in: %w[home] }
|
|
end
|