5 lines
105 B
Ruby
5 lines
105 B
Ruby
class Miniblog < ApplicationRecord
|
|
has_one_attached :image
|
|
has_rich_text :text
|
|
#has_rich_text :notes
|
|
end
|