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