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