id(); $table->unsignedBigInteger('profile_id')->nullable()->index(); $table->string('acct')->nullable(); $table->string('uri')->nullable(); $table->foreign('profile_id')->references('id')->on('profiles'); $table->unique(['profile_id', 'acct'], 'profile_id_acct_unique'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('profile_aliases'); } };