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