Method: ActiveRecord::Migration#announce
- Defined in:
- activerecord/lib/active_record/migration.rb
#announce(message) ⇒ Object
1005 1006 1007 1008 1009 |
# File 'activerecord/lib/active_record/migration.rb', line 1005 def announce() text = "#{version} #{name}: #{}" length = [0, 75 - text.length].max write "== %s %s" % [text, "=" * length] end |