governmental_sphere.rb 155 Bytes
class GovernmentalSphere < ActiveRecord::Base
  attr_accessible :name

  validates :name, :presence=>true, :uniqueness=>true

  has_many :institutions
end