2011-05-07 21:55:24 +02:00
|
|
|
class ArticleCategory < ActiveRecord::Base
|
|
|
|
has_many :articles
|
2011-05-18 16:10:30 +02:00
|
|
|
|
|
|
|
validates :name, :presence => true, :uniqueness => true, :length => { :in => 2..20 }
|
2011-05-07 21:55:24 +02:00
|
|
|
|
|
|
|
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)
|
|
|
|
#
|
|
|
|
|