summaryrefslogtreecommitdiff
path: root/vendor/plugins/globalize2/test/data/post.rb
blob: 20a2495dca8e574a45ef982662fd54c33292d7c5 (plain)
1
2
3
4
5
6
7
8
class Post < ActiveRecord::Base
  translates :subject, :content
  validates_presence_of :subject
end

class Blog < ActiveRecord::Base
  has_many :posts, :order => 'id ASC'
end