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