1
0
Daniel Supernault 1 жил өмнө
parent
commit
ae1db1e3ab

+ 1 - 1
database/migrations/2023_12_16_052413_create_user_domain_blocks_table.php

@@ -14,7 +14,7 @@ return new class extends Migration
         Schema::create('user_domain_blocks', function (Blueprint $table) {
             $table->id();
             $table->unsignedBigInteger('profile_id')->index();
-            $table->string('domain');
+            $table->string('domain')->index();
             $table->unique(['profile_id', 'domain'], 'user_domain_blocks_by_id');
         });
     }