2011-05-07 21:55:24 +02:00
|
|
|
class ArticleCategory < ActiveRecord::Base
|
|
|
|
has_many :articles
|
|
|
|
|
|
|
|
validates_length_of :name, :in => 2..20
|
|
|
|
validates_uniqueness_of :name
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2009-01-08 16:33:27 +01:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: article_categories
|
|
|
|
#
|
2011-05-07 21:55:24 +02:00
|
|
|
# id :integer(4) not null, primary key
|
2009-01-08 16:33:27 +01:00
|
|
|
# name :string(255) default(""), not null
|
|
|
|
# description :string(255)
|
|
|
|
#
|
|
|
|
|