id(); $table->foreignId('from_id')->references('id')->on('techniques')->constrained(); $table->foreignId('to_id')->references('id')->on('techniques')->constrained(); $table->string('type')->default('related'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('technique_relations'); } };