Sha256: 885fe999b027808968bf528dc602bd76d91b5f1e245f482a2e9016ef4bfb5318
Contents?: true
Size: 541 Bytes
Versions: 44
Compression:
Stored size: 541 Bytes
Contents
class UpdatePromoteErrataEmailDescription < ActiveRecord::Migration def up notification = MailNotification.find_by(:name => :katello_promote_errata) if notification notification.update_attribute :description, "A post-promotion summary of hosts with installable errata" end end def down notification = MailNotification.find_by(:name => :katello_promote_errata) if notification notification.update_attribute :description, "A post-promotion summary of hosts with installable errata" end end end
Version data entries
44 entries across 44 versions & 1 rubygems