mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
20 lines
357 B
Ruby
20 lines
357 B
Ruby
##
|
|
# = mag-ic
|
|
# == /'majik/
|
|
# _noun_
|
|
#
|
|
# 1. the power of apparently influencing the course of events by using
|
|
# mysterious or supernatural forces.
|
|
#
|
|
# used within a universe
|
|
#
|
|
# "do you believe in magic?"
|
|
class Magic < ActiveRecord::Base
|
|
include NilsBlankUniverse
|
|
|
|
validates :name, presence: true
|
|
|
|
belongs_to :user
|
|
belongs_to :universe
|
|
end
|