method

say

rails latest stable - Class: ActiveRecord::Migration

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.0.9) is shown here.

say(message, subitem=false)
public

No documentation available.

# File activerecord/lib/active_record/migration.rb, line 354
      def say(message, subitem=false)
        write "#{subitem ? "   ->" : "--"} #{message}"
      end

1Note

print standard-looking messages during migration

metavida ยท Sep 16, 20081 thank

Within a migration file you can use the say method to print out informational messages that match the style of standard migration messages. The say_with_time method is also pretty great.

say "migrate existing data"
#=> "-- migrate existing data"
# ... execute migration sql ...
say "updated all records", :subitem
#=> "   -> updated 5 records"