6 lines
116 B
Ruby
6 lines
116 B
Ruby
class Article < ApplicationRecord
|
|
has_rich_text :text
|
|
has_rich_text :content
|
|
validates_presence_of :title
|
|
end
|