notebook/app/models/language.rb
2015-03-29 11:26:10 -05:00

18 lines
359 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
include NilsBlankUniverse
validates :name, presence: true
belongs_to :user
belongs_to :universe
end