blob: 6614f6640d567fef6994741004eb31bd7fd93bc3 (
plain) (
blame)
1
2
3
4
5
6
7
|
class Pdfresource < ApplicationRecord
has_many_attached :pdfs
has_many_attached :thumbnails
validates :feature_slot,
numericality: { only_integer: true, greater_than_or_equal_to: 1, less_than_or_equal_to: 3, allow_nil: true },
allow_nil: true
end
|