kissingcomputer/app/models/article.rb
2026-01-10 16:17:07 +00:00

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