2015-10-06 13:55:12 -04:00
|
|
|
class SuperAttack < ActiveRecord::Base
|
2015-10-09 16:45:53 -04:00
|
|
|
has_paper_trail
|
|
|
|
|
2015-10-06 13:55:12 -04:00
|
|
|
validates :name, presence: true
|
|
|
|
validates :description, presence: true
|
2015-10-08 13:02:25 -04:00
|
|
|
|
2015-10-08 13:08:45 -04:00
|
|
|
default_scope { order(:name) }
|
|
|
|
|
2015-10-08 13:02:25 -04:00
|
|
|
def full
|
|
|
|
"#{name} - #{description}"
|
|
|
|
end
|
2015-10-06 13:55:12 -04:00
|
|
|
end
|