integer('flag_id'); $table->integer('node_id'); $table->string('arguments')->nullable(); $table->index('node_id'); $table->index('flag_id'); $table->unique(['node_id','flag_id']); $table->foreign('node_id')->references('id')->on('nodes'); $table->foreign('flag_id')->references('id')->on('flags'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('flag_node'); } }