method
announce
v7.0.0 -
Show latest stable
- Class:
ActiveRecord::Migration
announce(message)public
No documentation available.
# File activerecord/lib/active_record/migration.rb, line 882
def announce(message)
text = "#{version} #{name}: #{message}"
length = [0, 75 - text.length].max
write "== %s %s" % [text, "=" * length]
end