kissingcomputer/app/models/article.rb

16 lines
224 B
Ruby
Raw Normal View History

2026-01-10 16:17:07 +00:00
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