bigInteger('id', true); $table->timestamps(); $table->integer('people_id'); $table->bigInteger('photo_id')->index('fk_pp_ph_idx'); $table->unique(['people_id','photo_id'], 'UNIQUE'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('photo_people'); } }