|
class FirstPage < ActiveRecord::Base
|
|
attr_accessible :description, :title, :web_title,:page_type,:sort_type
|
|
validates_presence_of :web_title, :title, :description,:page_type
|
|
validates_length_of :web_title,:title, maximum: 30
|
|
validates_length_of :description, maximum: 100
|
|
end
|