This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/app/models/comment.rb
2013-06-24 13:29:39 +02:00

6 lines
186 B
Ruby

class Comment < ActiveRecord::Base
attr_accessible :text, :user_id, :blogpost, :post
validates_presence_of :text, :user_id, :blogpost_id
belongs_to :blogpost
belongs_to :user
end