8 lines
199 B
Ruby
8 lines
199 B
Ruby
class Blogpost < ActiveRecord::Base
|
|
attr_accessible :title, :text
|
|
validates_presence_of :title, :text, :user
|
|
belongs_to :user
|
|
has_many :comments
|
|
accepts_nested_attributes_for :comments
|
|
end
|