notebook/app/models/language.rb
2015-03-28 12:11:37 -05:00

16 lines
330 B
Ruby

##
# = lang-guage
# == /'laNGgqwij/
# _noun_
#
# 1. the method of communication, either spoken or written, consisting of the
# use of words in a structured and conventional way.
#
# spoken within a Universe
class Language < ActiveRecord::Base
validates :name, presence: true
belongs_to :user
belongs_to :universe
end