2021-09-26 15:22:36 -07:00
|
|
|
class Article < ApplicationRecord
|
2021-12-16 14:33:08 -08:00
|
|
|
has_many :comments, dependent: :destroy
|
2021-12-16 14:32:18 -08:00
|
|
|
has_rich_text :content
|
2021-12-16 09:20:38 -08:00
|
|
|
validates_presence_of :title
|
2021-09-26 15:22:36 -07:00
|
|
|
end
|