id(); $table->string('title'); $table->string('belongs_to'); $table->foreign('belongs_to')->on('custom_users')->references('username')->onDelete('cascade'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('skills'); } };