5 lines
104 B
Ruby
5 lines
104 B
Ruby
class Image < ApplicationRecord
|
|
has_one_attached :file
|
|
|
|
validates :title, :file, presence: true
|
|
end
|