15 lines
224 B
Ruby
15 lines
224 B
Ruby
class Article < ApplicationRecord
|
|
has_rich_text :text
|
|
has_rich_text :mood
|
|
has_rich_text :music
|
|
has_one_attached :icon_image
|
|
|
|
|
|
validates :title, presence: true,
|
|
length: { minimum: 5 }
|
|
|
|
|
|
end
|
|
|
|
|
|
|