trabajo-afectivo/app/models/signature.rb

8 lines
313 B
Ruby
Raw Normal View History

class Signature < ApplicationModel
has_many :groups, :after_add => :cache_update, :after_remove => :cache_update
after_create :cache_delete
after_update :cache_delete
after_destroy :cache_delete
validates :name, :presence => true
end