1 class Post < ActiveRecord::Base
 
   2   translates :subject, :content
 
   3   validates_presence_of :subject
 
   6 class Blog < ActiveRecord::Base
 
   7   has_many :posts, :order => 'id ASC'
 
  10 class Parent < ActiveRecord::Base
 
  17 class Comment < ActiveRecord::Base
 
  18   validates_presence_of :content
 
  22 class TranslatedComment < Comment