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