id(); $table->unsignedInteger('from_id')->index(); $table->string('from_type', 25)->index(); $table->unsignedInteger('to_id')->index(); $table->string('to_type', 25)->index(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('references'); } }