id(); $table->integer("object_id")->index(); $table->string("object_type", 50); $table->integer("project_id")->nullable()->index(); $table->string("action", 50); $table->text("comment")->nullable(); $table->integer("created_by")->nullable(); $table->json("extra_fields")->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('actions'); } };