Sha256: 10e5517308869eb51ef8ca846c37d27522660edabd590b0709c37904c62f302c
Contents?: true
Size: 546 Bytes
Versions: 59
Compression:
Stored size: 546 Bytes
Contents
class UpdatePromoteErrataEmailDescription < ActiveRecord::Migration[4.2] 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
59 entries across 59 versions & 1 rubygems