mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
18 lines
359 B
Ruby
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
|