id(); $table->string ("activity_id")->unique (); $table->string ("actor"); $table->string ("type"); $table->json ("object"); $table->json ("target")->nullable (); $table->text ("summary")->nullable (); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('activities'); } };