This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/models/post_detail.rb
2013-10-15 09:21:30 -05:00

7 lines
149 B
Ruby

class PostDetail < ActiveRecord::Base
belongs_to :post
validates_presence_of :key, :value
validates_uniqueness_of :key, scope: :post_id
end