id(); $table->string('domain'); $table->foreignIdFor(\App\Models\User::class); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('domains'); } };