5 lines
96 B
Ruby
5 lines
96 B
Ruby
class Article < ApplicationRecord
|
|
belongs_to :user
|
|
|
|
validates_presence_of :title, :post
|
|
end
|