2009-01-08 16:33:27 +01:00
|
|
|
# == Schema Information
|
2009-02-02 16:35:43 +01:00
|
|
|
# Schema version: 20090119155930
|
2009-01-08 16:33:27 +01:00
|
|
|
#
|
|
|
|
# Table name: article_categories
|
|
|
|
#
|
2009-02-02 16:35:43 +01:00
|
|
|
# id :integer not null, primary key
|
2009-01-08 16:33:27 +01:00
|
|
|
# name :string(255) default(""), not null
|
|
|
|
# description :string(255)
|
|
|
|
#
|
|
|
|
|
2009-01-06 11:49:19 +01:00
|
|
|
class ArticleCategory < ActiveRecord::Base
|
|
|
|
has_many :articles
|
|
|
|
|
|
|
|
validates_length_of :name, :in => 2..20
|
|
|
|
validates_uniqueness_of :name
|
|
|
|
|
|
|
|
end
|