# File lib/active_record/migration/command_recorder.rb, line 39
      def inverse
        @commands.reverse.map { |name, args|
          method = "invert_#{name}""invert_#{name}"
          raise IrreversibleMigration unless respond_to?(method, true)
          send(method, args)
        }
      end