id(); $table->foreignId ("activity_id")->constrained()->onDelete("cascade"); $table->foreignId ("actor")->constrained("actors")->onDelete("cascade"); $table->foreignId ("object")->constrained("actors")->onDelete("cascade"); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('follows'); } };