10 lines
145 B
Ruby
10 lines
145 B
Ruby
|
|
class Update < ApplicationRecord
|
||
|
|
belongs_to :member
|
||
|
|
has_one_attached :icon_image
|
||
|
|
has_rich_text :text
|
||
|
|
validates :text, presence:true
|
||
|
|
|
||
|
|
end
|
||
|
|
|
||
|
|
|