id(); $table->string('name'); $table->foreignId('owner_id')->constrained('users')->cascadeOnDelete(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('households'); } };