7 lines
86 B
Ruby
7 lines
86 B
Ruby
|
|
class Post < ApplicationRecord
|
||
|
|
has_one_attached :icon_image
|
||
|
|
has_rich_text :text
|
||
|
|
|
||
|
|
|
||
|
|
end
|