method
announce
announce(message)
public
Hide source
# File activerecord/lib/active_record/migration.rb, line 346 def announce(message) version = defined?(@version) ? @version : nil text = "#{version} #{name}: #{message}" length = [0, 75 - text.length].max write "== %s %s" % [text, "=" * length] end