char('label_id', 8); $table->char('service_id', 8); $table->unique(['label_id','service_id'], 'labels_assigned_u1'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('labels_assigned'); } }