# == Schema Information
#
# Table name: awards
#
#  id            :integer          not null, primary key
#  user_id       :integer
#  issuer        :string(255)
#  name          :string(255)
#  created_at    :datetime
#  updated_at    :datetime
#  date_received :date
#  description   :text
#  university_id    :integer
#

class Award < ActiveRecord::Base

  belongs_to :user

  validates :name,  presence: true

end
