id(); $table->unsignedBigInteger('profile_id')->index(); $table->string('domain')->index(); $table->unique(['profile_id', 'domain'], 'user_domain_blocks_by_id'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('user_domain_blocks'); } };