aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/blog_category.rb
blob: 9060d118caaadf2ebfb685285251de142c8b381b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
class BlogCategory < ActiveRecord::Base

  acts_as_indexed :fields => [:title]

  validates_presence_of :title
  validates_uniqueness_of :title

  has_friendly_id :title, :use_slug => true

end